00001
00002
00003
00004 #ifndef CD_Error_H
00005 #define CD_Error_H
00006
00007 #include <xcompiler_defs.h>
00008
00009 #define CD_Error_NoError 0x00
00010
00011 #define CD_Error_DAQBadSubdevice 0x01
00012 #define CD_Error_BadValue 0x02
00013 #define CD_Error_DAQBadLine 0x03
00014
00015 #define CD_Error_UnableToOpenLink 0x11 // problems configuring the link with the slave
00016 #define CD_Error_LinkNotReady 0x12 // the link with the slave is not ready
00017 #define CD_Error_Timeout 0x13 // a timeout happened
00018
00019 #define CD_Error_UnimplementedError 0xFF
00020
00021
00022 typedef unsigned char cd_Error;
00023
00024 #define cds_Error cd_Error
00025 #define cdm_Error cd_Error
00026
00027
00028 const char* cd_ErrorStr(uint8_t error_code);
00029
00030
00031 #endif