You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m attempting to implement RF95modem with a Heltec LoRa 32 v3, which uses an ESP32-S3 microcontroller instead of the standard ESP32 in previous versions. To match the pin layout of this Heltec v3 model, I’ve configured the following in platformio.ini:
When running pio run -t upload -e esp32s3_heltec_config, it compiles successfully, but when opening the Serial Monitor in Arduino IDE to check the initialization message, I get the following LoRa radio initialization error:
I’m attempting to implement RF95modem with a Heltec LoRa 32 v3, which uses an ESP32-S3 microcontroller instead of the standard ESP32 in previous versions. To match the pin layout of this Heltec v3 model, I’ve configured the following in platformio.ini:
[env:esp32s3_heltec_config]
platform = espressif32
board = heltec_wifi_lora_32_V3
framework = arduino
build_flags =
-fexceptions
-DRFM95_CS=8
-DRFM95_RST=12
-DRFM95_INT=14
-DUSE_DISPLAY
-DOLED_ADDRESS=0x3C
-DOLED_SDA=17
-DOLED_SCL=18
-DOLED_RST=21
lib_deps =
${env.lib_deps}
${env.libs_display}
board_build.partitions = no_ota.csv
When running pio run -t upload -e esp32s3_heltec_config, it compiles successfully, but when opening the Serial Monitor in Arduino IDE to check the initialization message, I get the following LoRa radio initialization error:
ESP-ROM:esp32s3-20210327
Build:Mar 27 2021
rst:0x1 (POWERON),boot:0x8 (SPI_FAST_FLASH_BOOT)
SPIWP:0xee
mode:DIO, clock div:1
load:0x3fce3808,len:0x4bc
load:0x403c9700,len:0xbd8
load:0x403cc700,len:0x2a0c
entry 0x403c98d0
rf95modem firmware (v0.7.4)
Copyright (c) 2018, 2019 Lars Baumgaertner
+FAIL: LoRa radio init
Any guidance on resolving the LoRa radio initialization issues would be greatly appreciated.
The text was updated successfully, but these errors were encountered: