Refactor protocol/parsing code; implement address parsing

This commit is contained in:
Lexi / Zoe 2021-04-04 02:50:25 +02:00
parent 28be3c4e8b
commit bc849d9662
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
7 changed files with 303 additions and 159 deletions

View file

@ -1,7 +1,7 @@
#include "config.h"
#include "uart.h"
#include "eeprom.h"
#include "protocol.h"
#include "parsing.h"
#include <util/delay.h>
@ -18,6 +18,6 @@ int main(void) {
while(1) {
// Run main loop endlessly
protocolMainLoop();
parseNextCommand();
}
}