Differences between these two environments. #108
-
Good morning everyone, I wanted to try to compile the firmware for my Aquila N32, but I find two definitions: I wanted to know what differences there are or is it possible to use one of the two interchangeably. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
you want to use N32F103RC_voxelab_maple I think you mean
N32G455RE_voxelab_maple is just for continuity. because technically that is the N32 chip name. the N32 technically has 512k flash, however Voxelab limits this through their bootloader to be half that - 256k. If you had a way to directly upload the firmware to the board like through ST-Link or jlink, you could technically use the full 512k. anyway that method isn't recommended unless you know exactly what you're doing. you can use either, but the 'RE' will give you a warning about this limit. you won't be able to flash anything more than ~228k. its better to stick to the normal way of flashing through the SD card. |
Beta Was this translation helpful? Give feedback.
-
Thanks so much, that's exactly what I wanted to know. |
Beta Was this translation helpful? Give feedback.
you want to use N32F103RC_voxelab_maple
I think you mean
env:N32G455RE_voxelab_maple
env:N32F103RC_voxelab_maple
N32G455RE_voxelab_maple is just for continuity. because technically that is the N32 chip name.
but for all intents and purposes we use N32F103RC_voxelab_maple. because this and the GD32 should be treated the same.
the N32 technically has 512k flash, however Voxelab limits this through their bootloader to be half that - 256k. If you had a way to directly upload the firmware to the board like through ST-Link or jlink, you could technically use the full 512k. anyway that method isn't recommended unless you know exactly what you're doing.
you can use either, but the 'RE' will giv…