File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
bsp/imxrt1052-evk/Libraries/drivers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,9 +66,9 @@ typedef enum _aipstz_master {
66
66
/*! @brief List of AIPSTZ peripheral access control configuration.*/
67
67
typedef enum _aipstz_peripheral_access_control {
68
68
kAIPSTZ_PeripheralAllowUntrustedMaster = 1U ,
69
- kAIPSTZ_PeripheralWriteProtected = (1U < 1 ),
70
- kAIPSTZ_PeripheralRequireSupervisor = (1U < 2 ),
71
- kAIPSTZ_PeripheralAllowBufferedWrite = (1U < 2 )
69
+ kAIPSTZ_PeripheralWriteProtected = (1U << 1 ),
70
+ kAIPSTZ_PeripheralRequireSupervisor = (1U << 2 ),
71
+ kAIPSTZ_PeripheralAllowBufferedWrite = (1U << 2 )
72
72
} aipstz_peripheral_access_control_t ;
73
73
74
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.*/
You can’t perform that action at this time.
0 commit comments