feat(ex02): done

This commit is contained in:
Maix0 2026-04-24 14:43:35 +02:00
parent b7580c043c
commit 0fe7dbdc0f
23 changed files with 1469 additions and 0 deletions

15
ex02/include/interupt.h Normal file
View file

@ -0,0 +1,15 @@
#ifndef INTERUPT_H
#define INTERUPT_H
#include <avr/io.h>
#include "mystd.h"
static inline void my_sei(void) {
SREG |= BV(SREG_I);
}
static inline void my_cli(void) {
SREG &= ~BV(SREG_I);
}
#endif /* INTERUPT_H */