Project

General

Profile

Statistics
| Revision:

root / lab4 / errors.h @ 70

History | View | Annotate | Download (706 Bytes)

1 68 up20180642
#ifndef ERRORS_H_INCLUDED
2
#define ERRORS_H_INCLUDED
3 53 up20180655
4
enum errors {
5 70 up20180655
    SUCCESS = 0,        /* @brief Sucessful */
6
    NULL_PTR,           /* @brief Null Pointer Error */
7
    LCF_ERROR,          /* @brief Error originated on LCF */
8
    SBCR_ERROR,         /* @brief Error on Subscribing Interrupt */
9
    UNSBCR_ERROR,       /* @brief Error on Unsubscring Interrupt*/
10
    READ_ERROR,         /* @brief Error on Reading from Port */
11
    WRITE_ERROR,        /* @brief Error on Writing to Port */
12
    TIMEOUT_ERROR,      /* @brief Timeout error */
13
    INVALID_COMMAND,    /* @brief Invalid Command issued */
14
    OTHER_ERROR,        /* @brief Unspecified error */
15 53 up20180655
};
16
17 68 up20180642
#endif //ERRORS_H_INCLUDED