internal struct used to save all data related to the locking of the UART More...
#include <packedCom.h>
Data Fields | |
uint8_t | userRead: 1 |
uint8_t | userWrite: 1 |
uint8_t | libRead: 1 |
uint8_t | libWrite: 1 |
uint8_t | busyWrite: 1 |
internal struct used to save all data related to the locking of the UART
uint8_t sPackedComLock::busyWrite |
indicates if the user is writing data into the buffers (flag is automatically set/cleared)
uint8_t sPackedComLock::libRead |
indicates if the UART is locked by the library for reading
uint8_t sPackedComLock::libWrite |
indicates if the UART is locked by the library for writing
uint8_t sPackedComLock::userRead |
indicates if the UART is locked by the user for reading
uint8_t sPackedComLock::userWrite |
indicates if the UART is locked by the user for writing