Skip to content

Commit

Permalink
bump of EEPROM data format version
Browse files Browse the repository at this point in the history
  • Loading branch information
lyusupov committed Mar 6, 2024
1 parent d1e04c3 commit 5aa90af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion software/firmware/source/SoftRF/src/driver/EEPROM.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#endif /* EXCLUDE_EEPROM */

#define SOFTRF_EEPROM_MAGIC 0xBABADEDA
#define SOFTRF_EEPROM_VERSION 0x00000060
#define SOFTRF_EEPROM_VERSION 0x00000061

enum
{
Expand Down
2 changes: 1 addition & 1 deletion software/firmware/source/SoftRF/src/platform/ESP32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1512,7 +1512,7 @@ static void ESP32_setup()

#if defined(USE_SA8X8)
Wire.begin(SOC_GPIO_PIN_TWR2_SDA , SOC_GPIO_PIN_TWR2_SCL);
Wire.beginTransmission(SSD1306_OLED_I2C_ADDR);
Wire.beginTransmission(SH1106_OLED_I2C_ADDR);
if (Wire.endTransmission() == 0) {
controller.setBand(Band::VHF);
}
Expand Down

0 comments on commit 5aa90af

Please sign in to comment.