1
0
Fork 0

Made Serial and I2C not include the Other

This saves 192 bytes
This commit is contained in:
IBNobody 2016-09-20 21:38:59 -05:00
parent f956802f29
commit 6631abc1cb
6 changed files with 36 additions and 14 deletions

View file

@ -10,9 +10,10 @@
#include <avr/interrupt.h>
#include <util/delay.h>
#include <stdbool.h>
#include "serial.h"
#ifdef USE_SERIAL
// Serial pulse period in microseconds. Its probably a bad idea to lower this
// value.
#define SERIAL_DELAY 24
@ -223,3 +224,5 @@ int serial_update_buffers(void) {
sei();
return 0;
}
#endif