tiz

Dependents:   mas

Error.h

Committer:
youle1119
Date:
2016-09-14
Revision:
0:d60c26d5fddc

File content as of revision 0:d60c26d5fddc:

#include "mbed.h"

#ifndef __ERROR_H__
#define __ERROR_H__

enum ErrorCode{
    ERROR_UNKNOW,
    ERROR_CONFIG
};

void raise_error(ErrorCode ec);

#endif //__ERROR_H__