This commit is contained in:
Wolfgang Hottgenroth
2014-05-14 19:37:04 +02:00
commit ca8ed709b8
22 changed files with 1468 additions and 0 deletions

10
fatal.cpp Normal file
View File

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