Project

General

Profile

Statistics
| Revision:

root / proj / include / errors.h @ 269

History | View | Annotate | Download (1.26 KB)

1
#ifndef ERRORS_H_INCLUDED
2
#define ERRORS_H_INCLUDED
3

    
4
/** @brief Error Codes */
5
enum errors {
6
    SUCCESS = 0,        /** @brief Sucessful */
7
    NULL_PTR = 250,     /** @brief Null Pointer Error */
8
    LCF_ERROR,          /** @brief Error originated on LCF */
9
    SBCR_ERROR,         /** @brief Error on Subscribing Interrupt */
10
    UNSBCR_ERROR,       /** @brief Error on Unsubscring Interrupt*/
11
    READ_ERROR,         /** @brief Error on Reading from Port */
12
    WRITE_ERROR,        /** @brief Error on Writing to Port */
13
    TIMEOUT_ERROR,      /** @brief Timeout error */
14
    INVALID_COMMAND,    /** @brief Invalid Command issued */
15
    INVALID_STATE,      /** @brief State machine reached an invalid state */
16
    BIOS_CALL_ERROR,    /** @brief Error upon BIOS call */
17
    OUT_OF_RANGE,       /** @brief Accessing area out of range of memory */
18
    ALLOC_ERROR,        /** @brief Memory allocation error */
19
    LOGIC_ERROR,        /** @brief Logic error */
20
    INVALID_ARG,        /** @brief Invalid argument */
21
    NOK,                /** @brief Not OK */
22
    TRANS_REFUSED,      /** @brief Transmission refused */
23
    TRANS_FAILED,       /** @brief Transmission failed */
24
    OTHER_ERROR         /** @brief Unspecified error */
25
};
26

    
27
#endif //ERRORS_H_INCLUDED