Skip to content

Commit

Permalink
illustrations for the Ham wiki [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
lyusupov committed Aug 29, 2023
1 parent f38075a commit 03ce57d
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
Binary file added documents/images/ham-10.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added documents/images/ham-11.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added documents/images/ham-12.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added documents/images/ham-13.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added documents/images/ham-9.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 5 additions & 6 deletions software/firmware/source/SoftRF/src/platform/ESP32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1079,18 +1079,13 @@ static void ESP32_setup()
// DCDC1 1500~3400mV, IMAX=2A
axp_2xxx.setDC1Voltage(3300); // WROOM, OLED

axp_2xxx.setDC3Voltage (3400); // V2.0 - SA868, NeoPixel
axp_2xxx.setALDO3Voltage(3300); // V2.1 - SA868, NeoPixel

// ALDO 500~3500V, 100mV/step, IMAX=300mA
axp_2xxx.setALDO2Voltage(3300); // micro-SD
axp_2xxx.setALDO4Voltage(3300); // GNSS, AXP2101 power-on value: 2900

axp_2xxx.setBLDO1Voltage(3300); // Mic

// axp_2xxx.enableDC1();
axp_2xxx.enableDC3(); // V2.0
axp_2xxx.enableALDO3(); // V2.1

axp_2xxx.enableALDO2();
axp_2xxx.enableALDO4();
Expand Down Expand Up @@ -1335,7 +1330,8 @@ static void ESP32_setup()
esp32_board = ESP32_LILYGO_T_TWR_V2_1;
hw_info.revision = 21;

axp_2xxx.disableDC3();
axp_2xxx.setALDO3Voltage(3300); // V2.1 - SA868, NeoPixel
axp_2xxx.enableALDO3();

#if defined(USE_SA8X8)
if (gpio2_voltage > 2400) {
Expand All @@ -1345,6 +1341,9 @@ static void ESP32_setup()
}
#endif /* USE_SA8X8 */
} else {
axp_2xxx.setDC3Voltage (3400); // V2.0 - SA868, NeoPixel
axp_2xxx.enableDC3();

pinMode(SOC_GPIO_PIN_TWR2_RADIO_HL, OUTPUT_OPEN_DRAIN);
digitalWrite(SOC_GPIO_PIN_TWR2_RADIO_HL, LOW);
}
Expand Down

0 comments on commit 03ce57d

Please sign in to comment.