Skip to main content
Associate II
April 9, 2025
Question

STM32Cube_FW_WL3_V1.0.0 sigfox inserts the ID and PAC

  • April 9, 2025
  • 1 reply
  • 339 views

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?

1 reply

KiteLeeAuthor
Associate II
April 10, 2025

Does anyone know?

Or there is documentation about this application.