1
0
mirror of https://github.com/peterantypas/maiana.git synced 2025-05-16 07:20:08 -07:00
Peter Antypas 735e36acd1 WIP
2021-09-20 14:26:37 -07:00

22 lines
262 B
C

/*
* TXErrors.h
*
* Created on: Sep 18, 2021
* Author: peter
*/
#ifndef INC_TXERRORS_H_
#define INC_TXERRORS_H_
typedef enum
{
TX_NO_ERROR = 0,
TX_ALLOC_ERROR,
TX_QUEUE_FULL,
TX_PACKET_TOO_OLD,
} TXErrorCode;
#endif /* INC_TXERRORS_H_ */