User Activity

I'm trying to use timer 8, stm32f429I, as advanced timer, to do N DMA transfers, that copies data from portD to memory and it does trigger on PC6 after triggering, an N DMA transfers should be shot I have tried, but now it triggers only DMA transfer,...
Hello,I'm trying to use interrupt + dma to capture port D data input, and the interrupt occurs but DMA is not starting to work at all.Here is my code:  void HAL_DMA_TransferComplete(DMA_HandleTypeDef *hdma) { if (hdma->Instance == DMA1_Stream0) { u...
I'm using STM32F779II With a microsd card. That is clocked at 48MHz.When writing to the sdcard as a block, I get HAL_TimeOut, using that function: err = HAL_SD_WriteBlocks(&sd_handle, (uint8_t *)src, block_num, num_blocks, 6000);After writing I wait ...
I'm trying to erase sectors 11,12 in the STM32F779II, I have been running into that problem for one week without a solution.So Right now I'm trying to check if there is ANY write protection on sectors 11,12. But There is NO write Protection error.How...
I'm trying to allocate 768KB For the Flash for the user program. at address 0x08000000And also save constant data starting from address 0x08100000 consuming 1024 K bytesNow from my understanding I should have free space for example sector 10,11.I'm t...