User Activity

Here's the definition of some functions that is used to allocate variable in D3 SRAM. typedef struct { uint16_t PackType; uint8_t Data[8]; uint8_t reserved[2]; }PinBasePack; #define sMemory(mem,type) ((type *)(sMem(&mem,sizeof(type)))) typede...
I am working on STM32F407ZET6 with DMA+SPI in slave mode. Trying to reset DMA Counter when NSS is high to avoid shifted data transmit.TX and RX DMA are working on Circular mode.This is my tx data typedef struct { uint8_t InputState[4]; uint8_t re...