14#define DCD_CMD_WR (0xCC)
15#define DCD_CMD_CK (0xCF)
16#define DCD_CMD_NOP (0xC0)
18#define DCD_WR_WR (0x00)
19#define DCD_WR_CLR (0x40)
20#define DCD_WR_SET (0xC0)
21#define DCD_WR_BYTE (0x01)
22#define DCD_WR_HALF (0x02)
23#define DCD_WR_WORD (0x04)
25#define DCD_CK_ALL_CLR (0x00)
26#define DCD_CK_ALL_SET (0x80)
27#define DCD_CK_ANY_CLR (0x40)
28#define DCD_CK_ANY_SET (0xC0)
29#define DCD_CK_BYTE (0x01)
30#define DCD_CK_HALF (0x02)
31#define DCD_CK_WORD (0x04)
33struct FlexSpi_Cfg_Block_t {
37 uint8_t readSampleClkSrc;
41 uint8_t devModeCfgEnable;
43 uint16_t waitTimeCfgCommands;
47} __attribute__((packed));