first commit

This commit is contained in:
Jérôme Delacotte
2025-03-06 11:15:32 +01:00
commit 7b30d6e298
5276 changed files with 2108927 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#include <avr/interrupt.h>
#include <TinyTimer0Overflow.h>
#include <TinyTimer1Overflow.h>
void runOnTimer0() {
//
}
void runOnTimer1() {
//
}
int main() {
sei();
Timer0Overflow.on(0x3fc00, runOnTimer0);
Timer1Overflow.on(0x3fc000, runOnTimer1);
while (1) {
// do nothing
}
return 0;
}