Browse Source

lpc43xx/ssp; Add DMACR fields

pull/187/head
Ben Gamari 11 years ago
parent
commit
2a588f11aa
  1. 6
      include/libopencm3/lpc43xx/ssp.h

6
include/libopencm3/lpc43xx/ssp.h

@ -105,6 +105,12 @@ LGPL License Terms @ref lgpl_license
#define SSP0_DMACR SSP_DMACR(SSP0)
#define SSP1_DMACR SSP_DMACR(SSP1)
/* RXDMAE: Receive DMA enable */
#define SSP_DMACR_RXDMAE 0x1
/* RXDMAE: Transmit DMA enable */
#define SSP_DMACR_TXDMAE 0x2
typedef enum {
SSP0_NUM = 0x0,
SSP1_NUM = 0x1

Loading…
Cancel
Save