Skip to content

Commit

Permalink
examples: serial baud - 115200
Browse files Browse the repository at this point in the history
  • Loading branch information
JulStrat committed Sep 14, 2021
1 parent d3fd16d commit 6ae96d9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Binary file removed examples/airports/airports.cdb
Binary file not shown.
4 changes: 2 additions & 2 deletions examples/airports/airports.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Board: Arduino Uno
SD card: SDHC 7.31Gb FAT32, sectorsPerCluster - 64
SD chip select pin: 10
Arduino IDE Serial Monitors settings: 9600 baud, no line ending.
Arduino IDE Serial Monitors settings: 115200 baud, no line ending.
Created by Ioulianos Kakoulidis, 2021.
Released into the public domain.
Expand Down Expand Up @@ -75,7 +75,7 @@ void setup() {
const char fileName[] = "airports.cdb";
const char *air[] = {"SBGL", "00AR", "PG-TFI", "US-0480", "ZYGH"};

Serial.begin(9600);
Serial.begin(115200);
while (!Serial) {
;
}
Expand Down
4 changes: 2 additions & 2 deletions examples/benchmark/benchmark.ino
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Board: Arduino Uno
SD card: SDHC 7.31Gb FAT32, sectorsPerCluster - 64
SD chip select pin: 10
Arduino IDE Serial Monitors settings: 9600 baud, no line ending.
Arduino IDE Serial Monitors settings: 115200 baud, no line ending.
Created by Ioulianos Kakoulidis, 2021.
Released into the public domain.
Expand All @@ -33,7 +33,7 @@ uCDB<SdFat, File> ucdb(fat);
#endif

void setup() {
Serial.begin(9600);
Serial.begin(115200);
while (!Serial) {
;
}
Expand Down
Binary file removed examples/satcat/satcat.cdb
Binary file not shown.
4 changes: 2 additions & 2 deletions examples/satcat/satcat.ino
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Board: Arduino Uno
SD card: SDHC 7.31Gb FAT32, sectorsPerCluster - 64
SD chip select pin: 10
Arduino IDE Serial Monitors settings: 9600 baud, no line ending.
Arduino IDE Serial Monitors settings: 115200 baud, no line ending.
Created by Ioulianos Kakoulidis, 2021.
Released into the public domain.
Expand Down Expand Up @@ -64,7 +64,7 @@ void setup() {
const char fileName[] = "satcat.cdb";
const char *sat[] = {"SPUTNIK", "EXPLORER", "DISCOVERER", "THOR", "VENERA"};

Serial.begin(9600);
Serial.begin(115200);
while (!Serial) {
;
}
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=uCDB
version=0.5.1
version=0.5.2
author=Ioulianos Kakoulidis
maintainer=Ioulianos Kakoulidis <[email protected]>
sentence=API for querying Constant DataBase file store.
Expand Down

0 comments on commit 6ae96d9

Please sign in to comment.