HAL State structure definition.
More...
HAL State structure definition.
- Note
- HAL I2C State value coding follow below described bitmap :
b7-b6 Error information
00 : No Error
01 : Abort (Abort user request on going)
10 : Timeout
11 : Error
b5 Peripheral initialization status
0 : Reset (peripheral not initialized)
1 : Init done (peripheral initialized and ready to use. HAL I2C Init function called)
b4 (not used)
x : Should be set to 0
b3
0 : Ready or Busy (No Listen mode ongoing)
1 : Listen (peripheral in Address Listen Mode)
b2 Intrinsic process state
0 : Ready
1 : Busy (peripheral busy with some configuration or internal operations)
b1 Rx state
0 : Ready (no Rx operation ongoing)
1 : Busy (Rx operation ongoing)
b0 Tx state
0 : Ready (no Tx operation ongoing)
1 : Busy (Tx operation ongoing)
◆ HAL_I2C_StateTypeDef
Enumerator |
---|
HAL_I2C_STATE_RESET | Peripheral is not yet Initialized
|
HAL_I2C_STATE_READY | Peripheral Initialized and ready for use
|
HAL_I2C_STATE_BUSY | An internal process is ongoing
|
HAL_I2C_STATE_BUSY_TX | Data Transmission process is ongoing
|
HAL_I2C_STATE_BUSY_RX | Data Reception process is ongoing
|
HAL_I2C_STATE_LISTEN | Address Listen Mode is ongoing
|
HAL_I2C_STATE_BUSY_TX_LISTEN | Address Listen Mode and Data Transmission process is ongoing
|
HAL_I2C_STATE_BUSY_RX_LISTEN | Address Listen Mode and Data Reception process is ongoing
|
HAL_I2C_STATE_ABORT | Abort user request ongoing
|