LE YOU / func

Dependents:   mas

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Error.h Source File

Error.h

00001 #include "mbed.h"
00002 
00003 #ifndef __ERROR_H__
00004 #define __ERROR_H__
00005 
00006 enum ErrorCode{
00007     ERROR_UNKNOW,
00008     ERROR_CONFIG
00009 };
00010 
00011 void raise_error(ErrorCode ec);
00012 
00013 #endif //__ERROR_H__