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.
2 parents e6f2081 + f4a36fa commit 2be6176Copy full SHA for 2be6176
bsp/imxrt1052-evk/Libraries/drivers/fsl_aipstz.h
@@ -66,9 +66,9 @@ typedef enum _aipstz_master {
66
/*! @brief List of AIPSTZ peripheral access control configuration.*/
67
typedef enum _aipstz_peripheral_access_control {
68
kAIPSTZ_PeripheralAllowUntrustedMaster = 1U,
69
- kAIPSTZ_PeripheralWriteProtected = (1U < 1),
70
- kAIPSTZ_PeripheralRequireSupervisor = (1U < 2),
71
- kAIPSTZ_PeripheralAllowBufferedWrite = (1U < 2)
+ kAIPSTZ_PeripheralWriteProtected = (1U << 1),
+ kAIPSTZ_PeripheralRequireSupervisor = (1U << 2),
+ kAIPSTZ_PeripheralAllowBufferedWrite = (1U << 2)
72
} aipstz_peripheral_access_control_t;
73
74
/*! @brief List of AIPSTZ peripherals. Organized by register offset for higher 32 bits, width for the 8-15 bits and shift for lower 8 bits.*/
0 commit comments