I have noticed that only the code flash is erased, programmed and verified.
The data flash is not.
I looked into rl78.c and I saw things like this:
int rl78_program(port_handle_t fd, void *code, unsigned int code_size, void *data, unsigned int data_size)
{
// Suppress "unused variable" warnings
(void)data;
(void)data_size;
which suggests that this is a feature that has been skipped on purpose, for later.
I this true?
Do you have plans to implement this?
Or maybe for some reason it was not possible to implement?
It is important for me to have this working.
I want not to need E1 programmers any more.
And the devices we are programming also need the data flash to be programmed.
If you are not planning to implement this then I might consider making a fix myself.
But I'm not familiar with your code so I would not be very effective.
I have noticed that only the code flash is erased, programmed and verified.
The data flash is not.
I looked into rl78.c and I saw things like this:
int rl78_program(port_handle_t fd, void *code, unsigned int code_size, void *data, unsigned int data_size)
{
// Suppress "unused variable" warnings
(void)data;
(void)data_size;
which suggests that this is a feature that has been skipped on purpose, for later.
I this true?
Do you have plans to implement this?
Or maybe for some reason it was not possible to implement?
It is important for me to have this working.
I want not to need E1 programmers any more.
And the devices we are programming also need the data flash to be programmed.
If you are not planning to implement this then I might consider making a fix myself.
But I'm not familiar with your code so I would not be very effective.