1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-01-13 23:26:33 +00:00
2013-03-25 13:53:52 +00:00

10 lines
239 B
C

#define ERROR_NONE 0
#define ERROR_FILE_NOT_FOUND 1
#define ERROR_INVALID_DATA 2
#define ERROR_UPDATE_FAILED 3
extern unsigned char Error;
void ErrorMessage(const char *message, unsigned char code);
void FatalError(unsigned long error);