Posted on May 17, 2011 at 13:13The solution can be found in your posts: - DMA_Channel6 - DMA1_Channel6_IRQHandler Watch out for the names!!! I think, at some places they use DMA1_* somewehere else DMA_*. Regards, Michael
Posted on May 17, 2011 at 13:13For the USART I also tried to use the DMA in conjunction with the external SRAM. But it also did not work. So, maybe there is a special setup that the DMA can also write to the external memory. But probably it is simpl...
Posted on May 17, 2011 at 13:00The following function seems to have a wrong argument for the parameter check: u8 CAN_Transmit(CanTxMsg* TxMessage) { u8 TransmitMailbox = 0; /* Check the parameters */ assert_param(IS_CAN_STDID(TxMessage->StdId)); ...
Posted on May 17, 2011 at 13:00Hello MCD Application Team, when initializing a memory struct of the type FSMC_NORSRAMInitTypeDef, I found out that two pointers to timing structures are not initialized, only their members. This will probably crash th...