ThermometerPro/fatal.cpp

12 lines
173 B
C++
Raw Normal View History

2014-02-23 21:12:13 +01:00
#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);
}