User Activity

I am getting this following error while trying to debug the Custom Board.please help me find out what is the meaning of this error.Thread #1 [main] 1 [core: 0] (Suspended : Signal : SIGTRAP:Trace/breakpoint trap) 0x1fff5a30 <signal handler called>(...
I configured ADC with DMA for 5 channels.but converted values are wrong. Last channel value stored in First in the buffer and First channel value copied to remaining buffer static void MX_ADC1_Init(void) { ADC_ChannelConfTypeDef sConfig = {0}; /*...
I wanted to know which channel is converted latest. I configured as belowhadc1.Instance = ADC1; hadc1.Init.ClockPrescaler = ADC_CLOCK_SYNC_PCLK_DIV2; hadc1.Init.Resolution = ADC_RESOLUTION_12B; hadc1.Init.DataAlign = ADC_DATAALIGN_RIGHT; hadc...
I created new project using CubeMX and selected USB Host and FATFS. but ffconf.h is missing in the project it is giving error.I treid to copy from STM32F769 example project but function is missing. retFATFS = FATFS_LinkDriver(&FATFS_Driver, FATFSPath...
I am trying to make UART boot loader and programming via Teraterm by sending HEX file.some hex records have only 4 bytes. how to program only one word. Reference manual RM0454 page no. 59 says only double word can be programmed.How to program single ...