Embedded Development Skills: Further Familiarization with MCU Startup Process from STM32’s Startup and Linker Files

Embedded Development Skills: Further Familiarization with MCU Startup Process from STM32's Startup and Linker Files

Line-by-Line Analysis of the Linker File In the previous article, we analyzed the startup file, and here we will supplement an important C function within the startup file. /** * @brief Setup the microcontroller system * Initialize the FPU setting, vector table location and External memory * configuration. * @param None * @retval None */ … Read more

Understanding MCU Initialization Processes

Understanding MCU Initialization Processes

Hello everyone, I am the information guy~Today I will share an article about MCU initialization: 1. What do we do during initialization? In software development, there is generally an initialization process,and if there isn’t, I can’t imagine your program. Our hardware registers, module configurations, software data structures, and system initial states all need to be … Read more