Skip to content

Commit

Permalink
Define serial speed
Browse files Browse the repository at this point in the history
  • Loading branch information
redakker committed Nov 26, 2023
1 parent 979fb69 commit 02734f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/definitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#define BOARD_NAME "blecker"
#define LED_BUILTIN 2
#define EEPROM_SIZE 1024
#define SERIAL_SPEED 115200

// Software settings
#define SERVER_PORT 80
Expand Down
2 changes: 1 addition & 1 deletion src/log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Log::Log() : blueToothSerial(NULL) {}

void Log::setup () {
// Init serial
Serial.begin(115200);
Serial.begin(SERIAL_SPEED);
}

void Log::loop () {}
Expand Down

0 comments on commit 02734f2

Please sign in to comment.