Finished preliminray version of the python serial monitor. Updated arduino scripts to wor at 115200 baud rate.
This commit is contained in:
parent
59a9758a63
commit
9af30ef829
5 changed files with 61 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
9
arduino_programs/arduino_tester.ino
Normal file
9
arduino_programs/arduino_tester.ino
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
// This program is supposed to be used with an Arduino Mega.
|
||||
|
||||
void setup() {
|
||||
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue