Fixed the compilation error of HeltecV4Board::begin.
This commit is contained in:
@@ -10,11 +10,12 @@ void HeltecV4Board::begin() {
|
|||||||
loRaFEMControl.init();
|
loRaFEMControl.init();
|
||||||
|
|
||||||
periph_power.begin();
|
periph_power.begin();
|
||||||
|
esp_reset_reason_t reason = esp_reset_reason();
|
||||||
if (reason == ESP_RST_DEEPSLEEP) {
|
if (reason == ESP_RST_DEEPSLEEP) {
|
||||||
long wakeup_source = esp_sleep_get_ext1_wakeup_status();
|
long wakeup_source = esp_sleep_get_ext1_wakeup_status();
|
||||||
if (wakeup_source & (1 << P_LORA_DIO_1)) { // received a LoRa packet (while in deep sleep)
|
if (wakeup_source & (1 << P_LORA_DIO_1)) { // received a LoRa packet (while in deep sleep)
|
||||||
startup_reason = BD_STARTUP_RX_PACKET;
|
startup_reason = BD_STARTUP_RX_PACKET;
|
||||||
}
|
}
|
||||||
|
|
||||||
rtc_gpio_hold_dis((gpio_num_t)P_LORA_NSS);
|
rtc_gpio_hold_dis((gpio_num_t)P_LORA_NSS);
|
||||||
rtc_gpio_deinit((gpio_num_t)P_LORA_DIO_1);
|
rtc_gpio_deinit((gpio_num_t)P_LORA_DIO_1);
|
||||||
|
|||||||
Reference in New Issue
Block a user