We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fd2edc commit b69e516Copy full SHA for b69e516
include/drivers/mspi/nrfe_mspi.h
@@ -41,7 +41,9 @@ typedef enum {
41
NRFE_MSPI_TXRX,
42
NRFE_MSPI_SDP_APP_HARD_FAULT,
43
NRFE_MSPI_WRONG_OPCODE,
44
- NRFE_MSPI_ALL_OPCODES = NRFE_MSPI_WRONG_OPCODE,
+ NRFE_MSPI_OPCODES_COUNT = NRFE_MSPI_WRONG_OPCODE,
45
+ /* This is to make sizeof(nrfe_mspi_opcode_t)==32bit, for alignment purpouse. */
46
+ NREE_MSPI_OPCODES_MAX = 0xFFFFFFFFU,
47
} nrfe_mspi_opcode_t;
48
49
typedef struct {
@@ -95,7 +97,7 @@ typedef struct {
95
97
} nrfe_mspi_xfer_packet_msg_t;
96
98
99
- nrfe_mspi_opcode_t opcode; /* Same as application's request. */
100
+ nrfe_mspi_opcode_t opcode;
101
uint8_t data;
102
} nrfe_mspi_flpr_response_msg_t;
103
0 commit comments