mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-01 18:29:56 +00:00
a1c433748a
* Support for SerialModule on RP2040 * Remove one !defined too many * Increase serial RX_BUFFER: more reliable for long packets Even results into an error for ESP32 --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
57 lines
1.0 KiB
C
57 lines
1.0 KiB
C
// #define RADIOLIB_CUSTOM_ARDUINO 1
|
|
// #define RADIOLIB_TONE_UNSUPPORTED 1
|
|
// #define RADIOLIB_SOFTWARE_SERIAL_UNSUPPORTED 1
|
|
|
|
#define ARDUINO_ARCH_AVR
|
|
|
|
#undef CBC
|
|
#define CBC 0
|
|
#undef CTR
|
|
#define CTR 1
|
|
#undef ECB
|
|
#define ECB 0
|
|
|
|
#define USE_SH1106 1
|
|
|
|
// default I2C pins:
|
|
// SDA = 4
|
|
// SCL = 5
|
|
|
|
// Recommended pins for SerialModule:
|
|
// txd = 8
|
|
// rxd = 9
|
|
|
|
#define EXT_NOTIFY_OUT 22
|
|
#define BUTTON_PIN 17
|
|
|
|
#define LED_PIN PIN_LED
|
|
|
|
#define BATTERY_PIN 26
|
|
// ratio of voltage divider = 3.0 (R17=200k, R18=100k)
|
|
#define ADC_MULTIPLIER 3.1 // 3.0 + a bit for being optimistic
|
|
|
|
#define USE_SX1262
|
|
|
|
#undef RF95_SCK
|
|
#undef RF95_MISO
|
|
#undef RF95_MOSI
|
|
#undef RF95_NSS
|
|
|
|
#define RF95_SCK 10
|
|
#define RF95_MISO 12
|
|
#define RF95_MOSI 11
|
|
#define RF95_NSS 3
|
|
|
|
#define LORA_DIO0 RADIOLIB_NC
|
|
#define LORA_RESET 15
|
|
#define LORA_DIO1 20
|
|
#define LORA_DIO2 2
|
|
#define LORA_DIO3 RADIOLIB_NC
|
|
|
|
#ifdef USE_SX1262
|
|
#define SX126X_CS RF95_NSS
|
|
#define SX126X_DIO1 LORA_DIO1
|
|
#define SX126X_BUSY LORA_DIO2
|
|
#define SX126X_RESET LORA_RESET
|
|
#define SX126X_E22
|
|
#endif |