Can this LoRaMac-node work on STM32F103C8T6 (blue pill)? #1055
-
Hi,
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The STM32F103C8T6 doesn't look to be suitable to run this stack. This MCU has 64KB FLASH memory. Compiling this project provided basic example in release mode gives already a memory usage bigger than 64KB. And your application will most certainly increase the required amount of memory. Could you please provide the link for the Semtech documentation where it is said that the minimum MCU requirement is 12KB of FLASH? Looking at following link it is said that minimal FLASH size is 128 KB FLASH memory. Also in following document it is said that the minimal FLASH size is 128 KB and the recommendation is 256 KB Concerning your other questions you will get I think better answers by using a general forum like In the future it would be nice if you could post this kind of questions on the project Discussions tab. It is a better place to engage discussions and then we can agree if it is an issue or not. |
Beta Was this translation helpful? Give feedback.
The STM32F103C8T6 doesn't look to be suitable to run this stack.
This MCU has 64KB FLASH memory. Compiling this project provided basic example in release mode gives already a memory usage bigger than 64KB. And your application will most certainly increase the required amount of memory.
Could you please provide the link for the Semtech documentation where it is said that the minimum MCU requirement is 12KB of FLASH?
Looking at following link it is said that minimal FLASH size is 128 KB FLASH memory.
https://lora-developers.semtech.com/library/tech-papers-and-guides/mcu-memory-management/
Also in following document it is said that the minimal FLASH size is 128 KB and the recommendation is 2…