Project

General

Profile

Statistics
| Revision:

root / lab4 / errors.h @ 75

History | View | Annotate | Download (706 Bytes)

1
#ifndef ERRORS_H_INCLUDED
2
#define ERRORS_H_INCLUDED
3

    
4
enum errors {
5
    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
};
16

    
17
#endif //ERRORS_H_INCLUDED