TestDoxygen  1.0.21
Test for Doxygen
TestMAX7456/errorno.h
Go to the documentation of this file.
00001 
00004 /* Error codes, stored in (uint8_t) errno
00005   The value is cleared at the start of each second
00006 
00007   Created JR 100819
00008   MRU JR 101015
00009 
00010   101015 Added ERRCROSSEC
00011 */
00012 #include <inttypes.h>
00013 
00014 #ifndef _ERRORNO_H
00015 #define _ERRORNO_H
00016 #define ERRNOERR    ((uint8_t) 0x00)  
00017 #define ERRTMCMP    ((uint8_t) 0x01)  
00018 #define ERRGPSPAR   ((uint8_t) 0x02)  
00019 #define ERRNOPPS    ((uint8_t) 0x03)  
00020 #define ERRLW       ((uint8_t) 0x04)  
00021 #define ERRTMCMPLW  ((uint8_t) 0x05)  
00022 #define ERRCROSSEC  ((uint8_t) 0x06)  
00023 /* #define ERR      ((uint8_t) 0x0n)  */  /* template */
00024 
00025 #endif
 All Data Structures Files Functions Variables Enumerations Defines