16 lines
348 B
C
16 lines
348 B
C
#ifndef _error_codes_h
|
|
#define _error_codes_h
|
|
|
|
#define SUCCESS 0
|
|
|
|
//greater than 128 are possible avr return codes
|
|
#define ERR_UNKN_DICTIONARY 128
|
|
|
|
#define ERR_UNKN_PP_OPCODE_ONLY 129
|
|
#define ERR_UNKN_PP_OPCODE_8BOP 130
|
|
#define ERR_UNKN_PP_OPCODE_16BOP 131
|
|
#define ERR_UNKN_PP_OPCODE_24BOP 132
|
|
#define ERR_UNKN_PP_OPCODE_8BRV 133
|
|
|
|
#endif
|