mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-29 02:51:17 +00:00

* WIP * Do the right things * Add to build matrix * Yaml lint has annoyed me for the final time * Fixes to variant
26 lines
440 B
C
26 lines
440 B
C
#define ARDUINO_ARCH_AVR
|
|
|
|
#define USE_SSD1306
|
|
|
|
#define BUTTON_PIN 2
|
|
#define BUTTON_NEED_PULLUP
|
|
|
|
#define LED_PIN PIN_LED
|
|
|
|
#undef BATTERY_PIN
|
|
|
|
#undef LORA_SCK
|
|
#undef LORA_MISO
|
|
#undef LORA_MOSI
|
|
#undef LORA_CS
|
|
|
|
#define USE_RF95
|
|
#define LORA_SCK PIN_SPI0_SCK
|
|
#define LORA_MISO PIN_SPI0_MISO
|
|
#define LORA_MOSI PIN_SPI0_MOSI
|
|
#define LORA_CS PIN_SPI0_SS
|
|
|
|
#define LORA_DIO0 21
|
|
#define LORA_DIO1 22
|
|
#define LORA_DIO2 RADIOLIB_NC
|
|
#define LORA_RESET 20 |