11 lines
164 B
C++
11 lines
164 B
C++
![]() |
#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);
|
||
|
}
|
||
|
|
||
|
|