bigboosted
Well-known member
Hello Everyone,
Does anyone know the specs on the Flash memory addressing on the 4.1?
I think it starts at x60,000,000 and goes for 8 Mbyte.
Does anyone know where it stops and the EEPROM starts?
Also the location of the restore program?
I've used the memcpy with 4.0 with great success. Now I want to use the 4.1 with its bigger flash memory.
I started to try and figure this out but memcpy does not seem to work past the 4.0 2 Mbyte mark.
For example;
This above code works correct, however;
This code will cause the 4.1 to stop responding and require a button press to upload another program.
I'm currently using Arduino 1.8.11 with Teensyduino 1.53
Thanks for any help!
Does anyone know the specs on the Flash memory addressing on the 4.1?
I think it starts at x60,000,000 and goes for 8 Mbyte.
Does anyone know where it stops and the EEPROM starts?
Also the location of the restore program?
I've used the memcpy with 4.0 with great success. Now I want to use the 4.1 with its bigger flash memory.
I started to try and figure this out but memcpy does not seem to work past the 4.0 2 Mbyte mark.
For example;
Code:
byte dest[0x100];
memcpy(dest, 0x601F0000, 0x100);
Code:
byte dest[0x100];
memcpy(dest, 0x60200000, 0x100);
I'm currently using Arduino 1.8.11 with Teensyduino 1.53
Thanks for any help!