mirror of
https://github.com/liberatedsystems/RNode_Firmware_CE.git
synced 2025-07-31 02:18:52 -04:00
Merge pull request #73 from cobraPA/upstream_add_heltec_lora_v3
Add heltec lora32 v3
This commit is contained in:
commit
edf6dce388
7 changed files with 101 additions and 5 deletions
|
@ -1111,7 +1111,15 @@ void validate_status() {
|
|||
if (device_init()) {
|
||||
hw_ready = true;
|
||||
} else {
|
||||
hw_ready = false;
|
||||
#if !HAS_BLUETOOTH && !HAS_BLE
|
||||
// Without bluetooth, bt_ready and device_init_done
|
||||
// are not set
|
||||
// and neither is hw_ready (see device_init())
|
||||
hw_ready = true;
|
||||
device_init_done = true;
|
||||
#else
|
||||
hw_ready = false;
|
||||
#endif
|
||||
}
|
||||
#else
|
||||
hw_ready = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue