Missing SPI_RSER flag definitions in mk20dx128.h

christoph

Well-known member
Hi Paul,

mk20dx128.h is missing some defines for the SPI_RSER flags. Here they are (should be inserted at line 1196 following the definition of SPI0_RSER):
Code:
#define SPI_RSER_TCF_RE    (uint32_t)0x80000000 // Transmission Complete Request Enable
#define SPI_RSER_EOQF_RE   (uint32_t)0x10000000 // DSPI Finished Request Request Enable
#define SPI_RSER_TFUF_RE   (uint32_t)0x08000000 // Transmit FIFO Underflow Request Enable
#define SPI_RSER_TFFF_RE   (uint32_t)0x02000000 // Transmit FIFO Fill Request Enable
#define SPI_RSER_TFFF_DIRS (uint32_t)0x01000000 // Transmit FIFO FIll Dma or Interrupt Request Select
#define SPI_RSER_RFOF_RE   (uint32_t)0x00080000 // Receive FIFO Overflow Request Enable
#define SPI_RSER_RFDF_RE   (uint32_t)0x00020000 // Receive FIFO Drain Request Enable
#define SPI_RSER_RFDF_DIRS (uint32_t)0x00010000 // Receive FIFO Drain DMA or Interrupt Request Select
 
Back
Top