Finished preliminray version of the python serial monitor. Updated arduino scripts to wor at 115200 baud rate.

This commit is contained in:
Mariano Uvalle 2020-12-12 09:50:34 -06:00
parent 59a9758a63
commit 9af30ef829
5 changed files with 61 additions and 2 deletions

View file

@ -146,7 +146,7 @@ void setup() {
// Setting an invalid value.
lastOp = -1;
Serial.begin(9600);
Serial.begin(115200);
writeEEPROM(0x1234, 0x55, true);
writeEEPROM(0x4321, 0x7E, true);

View file

@ -0,0 +1,9 @@
// This program is supposed to be used with an Arduino Mega.
void setup() {
}
void loop() {
}

View file

@ -11,7 +11,7 @@
#define WRITE_CLOCK 19
void setup() {
Serial.begin(9600);
Serial.begin(115200);
attachInterrupt(digitalPinToInterrupt(ADDRESS_CLOCK), onAddressClock, RISING);
attachInterrupt(digitalPinToInterrupt(WRITE_CLOCK), onWriteClock, FALLING);
}