Skip to content

Commit

Permalink
Examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo Lima Caratti committed Oct 17, 2019
1 parent 0f4e5eb commit 1c02766
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/SI4844_MINIMAL/SI4844_MINIMAL.ino
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define INTERRUPT_PIN 2
#define RESET_PIN 12
// Pages 17 and 18 from Si48XX ATDD PROGRAMMING GUIDE
#define DEFAULT_BAND 0 // FM => 0 to 19; AM => 20 to 24; SW => 25 to 40
#define DEFAULT_BAND 4 // FM => 0 to 19; AM => 20 to 24; SW => 25 to 40

SI4844 si4844;

Expand Down
2 changes: 1 addition & 1 deletion examples/SI4844_POC/SI4844_POC.ino
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void show_firmware_information() {

si4844.getFirmware();
Serial.print("Final 2 digits of Part Number..: ");
Serial.println(si4844.getFirmwarePartNumber());
Serial.println(si4844.getFirmwarePartNumber(), HEX);
Serial.print("Firmware Major Revision........: ");
Serial.println(si4844.getFirmwareMajorRevision());
Serial.print("Firmware Minor Revision........: ");
Expand Down

0 comments on commit 1c02766

Please sign in to comment.