17 lines
478 B
C++
17 lines
478 B
C++
inline void _assert(const char* expression, const char* message, const char* file, int line)
|
|
{
|
|
Serial.print("Assert ");
|
|
Serial.print(file);
|
|
Serial.print(" : ");
|
|
Serial.print(line);
|
|
Serial.print(" '");
|
|
Serial.print(expression);
|
|
Serial.println("' failed.");
|
|
}
|
|
|
|
template< typename T>
|
|
inline String toString(const T & t) {
|
|
return String(t);
|
|
}
|
|
|
|
#define assert(EXPRESSION, MSG) ((EXPRESSION) ? (void)0 : _assert(#EXPRESSION, #MSG, __FILE__, __LINE__)) |