root / proj / include / errors.h @ 266
History | View | Annotate | Download (1.26 KB)
1 | 144 | up20180655 | #ifndef ERRORS_H_INCLUDED
|
---|---|---|---|
2 | #define ERRORS_H_INCLUDED
|
||
3 | |||
4 | 145 | up20180655 | /** @brief Error Codes */
|
5 | 144 | up20180655 | enum errors {
|
6 | 188 | up20180642 | SUCCESS = 0, /** @brief Sucessful */ |
7 | 234 | up20180655 | NULL_PTR = 250, /** @brief Null Pointer Error */ |
8 | 188 | up20180642 | 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 | 235 | up20180642 | INVALID_ARG, /** @brief Invalid argument */
|
21 | 261 | up20180642 | NOK, /** @brief Not OK */
|
22 | TRANS_REFUSED, /** @brief Transmission refused */
|
||
23 | TRANS_FAILED, /** @brief Transmission failed */
|
||
24 | 188 | up20180642 | OTHER_ERROR /** @brief Unspecified error */
|
25 | 144 | up20180655 | }; |
26 | |||
27 | #endif //ERRORS_H_INCLUDED |