endlich geht mal wieder was
This commit is contained in:
parent
d5ca50f475
commit
9414322a19
11 changed files with 481 additions and 412 deletions
12
firmware/interrupts.cpp
Normal file
12
firmware/interrupts.cpp
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include <avr/interrupt.h>
|
||||
#include "global_vars.h"
|
||||
|
||||
ISR(USART0_RX_vect)
|
||||
{
|
||||
usart.handleRX();
|
||||
}
|
||||
|
||||
ISR(USART0_TX_vect)
|
||||
{
|
||||
usart.handleTX();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue