ThermometerPro/fatal.cpp
2014-03-08 00:23:46 +01:00

12 lines
176 B
C++

#include <avr/interrupt.h>
#include"fatal.h"
void fatal(uint8_t code) {
// cli();
// do something with the code and somehow show that there is a problem
while (1);
}