init module03

This commit is contained in:
hugo LAMY
2025-03-10 09:41:23 +01:00
parent d83dd6a533
commit 7459a2155c
7 changed files with 163 additions and 0 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