User Activity

Hi All!I have a issue about SPI DMA communication on NUCLEO-H563 Board. Details are as follows.My Configuration of STM32CubeMx as shown in the figure1 and 2.figure1figure2I call the function of HAL_SPI_TransmitReceive_DMA(), it comes to line 2212 of ...
The chip is STM32G491. The NRST pin is suspended. The option byte is default value.I find my board doesn't work after power up, so I measure the waveform of VDD and NRST as figure 1 below.Figure 1The green wave is NRST and the yellow wave is VDD. The...
Here is my code in main() to config field NRST_MODE: HAL_FLASH_Unlock(); HAL_FLASH_OB_Unlock(); gFlashOBST.OptionType = OPTIONBYTE_USER; gFlashOBST.USERType  = OB_USER_NRST_MODE; gFlashOBST.USERConfig = FLASH_OPTR_NRST_MODE_1; HAL_FLASHEx_OBProgram(&...
HiI want to test the execution speed of SIMD instruction. My demo as below.16-bit addition, for example.I find the instruction __SADD16() in cmsis_gcc.h. The execution time using __SADD16 is 27us and the time without __SADD16 is 23us.  It seems like ...
I learned from section 2.5.7.2 of the STM32CubeIDE user manual that it can be done by modifying the .ld flie and .s file and using __attribute__((section(".RAM_Code"))) declaration functions. But i still confuse in modifying the .s file. I wonder how...