headers and comments for module02

This commit is contained in:
hugo LAMY
2025-03-08 22:41:36 +01:00
parent d91524b14a
commit e63951591c
29 changed files with 592 additions and 518 deletions

View File

@@ -0,0 +1,8 @@
#ifndef INTERRUPT_H
#define INTERRUPT_H
// 7.3.1 : SREG AVR Status Register
#define ENABLE_GLOBAL_INTERRUPT (1<<7)
#define DISABLE_GLOBAL_INTERRUPT (0<<7)
#endif // INTERRUPT_H