mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-23 03:00:56 +00:00
* DOES NOT WORK * trunk * DOES NOT WORK * trunk * DOES NOT WORK * trunk * WIP: LR11x0 non functional interface code. Please don't expect a working firmware out of this! I don't know what i am doing! :-) * trunk fmt * use canon toolchain * update and fix radiolib dependency * Switch Radiolib back to GIT checkout * enable tcxo and fix startReceive * progress * Correct midjudgement on scope of build defines. * - enable peripheral power rail during startup init - fix portduino builds * add tracker pinout variant * update to radiolib 6.6.0 API (aka: godmode is not for mere mortals) * tracker is not so 'extra' any more --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
16 lines
242 B
C
16 lines
242 B
C
#pragma once
|
|
|
|
enum LoRaRadioType {
|
|
NO_RADIO,
|
|
STM32WLx_RADIO,
|
|
SIM_RADIO,
|
|
RF95_RADIO,
|
|
SX1262_RADIO,
|
|
SX1268_RADIO,
|
|
LLCC68_RADIO,
|
|
SX1280_RADIO,
|
|
LR1110_RADIO,
|
|
LR1120_RADIO
|
|
};
|
|
|
|
extern LoRaRadioType radioType; |