2025-04-09 1:19 AM - edited 2025-04-09 1:19 AM
Hello, I want to apply sigfox on the stm32wl33kcv6 project.
I have some questions that I hope you can answer.
1. I have sigfox ID and PAC, how do I write to flash?
I have noticed these codes:
NO_INIT_SECTION(const uint8_t wl3sfx_nvm_boarddata[FLASH_PAGE_SIZE], ".noinit.sigfox_boarddata");
NO_INIT_SECTION(const uint8_t wl3sfx_nvm_records[FLASH_PAGE_SIZE], ".noinit.sigfox_nvm_records");
NO_INIT_SECTION(const uint8_t wl3sfx_nvm_records_backup[FLASH_PAGE_SIZE], ".noinit.sigfox_nvm_records_backup");
/* Sigfox Data Sections */
.sigfox_data :
{
. = ALIGN(4);
KEEP(*(.noinit.sigfox_boarddata))
KEEP(*(.noinit.sigfox_nvm_records))
KEEP(*(.noinit.sigfox_nvm_records_backup))
} > REGION_NVM
I don't know how to connect them.
2. Does stm32wl33kcv6 sigfox not support the keil compiler environment?
2025-04-09 6:58 PM
Does anyone know?
Or there is documentation about this application.