mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-01 10:19:59 +00:00
26a4d6c87a
Some checks are pending
CI / setup (check) (push) Waiting to run
CI / setup (esp32) (push) Waiting to run
CI / setup (esp32c3) (push) Waiting to run
CI / setup (esp32c6) (push) Waiting to run
CI / setup (esp32s3) (push) Waiting to run
CI / setup (nrf52840) (push) Waiting to run
CI / setup (rp2040) (push) Waiting to run
CI / setup (stm32) (push) Waiting to run
CI / check (push) Blocked by required conditions
CI / build-esp32 (push) Blocked by required conditions
CI / build-esp32-s3 (push) Blocked by required conditions
CI / build-esp32-c3 (push) Blocked by required conditions
CI / build-esp32-c6 (push) Blocked by required conditions
CI / build-nrf52 (push) Blocked by required conditions
CI / build-rpi2040 (push) Blocked by required conditions
CI / build-stm32 (push) Blocked by required conditions
CI / package-raspbian (push) Waiting to run
CI / package-raspbian-armv7l (push) Waiting to run
CI / package-native (push) Waiting to run
CI / build-docker (push) Waiting to run
CI / after-checks (push) Blocked by required conditions
CI / gather-artifacts (esp32) (push) Blocked by required conditions
CI / gather-artifacts (esp32c3) (push) Blocked by required conditions
CI / gather-artifacts (esp32c6) (push) Blocked by required conditions
CI / gather-artifacts (esp32s3) (push) Blocked by required conditions
CI / gather-artifacts (nrf52840) (push) Blocked by required conditions
CI / gather-artifacts (rp2040) (push) Blocked by required conditions
CI / gather-artifacts (stm32) (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
CI / release-firmware (esp32) (push) Blocked by required conditions
CI / release-firmware (esp32c3) (push) Blocked by required conditions
CI / release-firmware (esp32c6) (push) Blocked by required conditions
CI / release-firmware (esp32s3) (push) Blocked by required conditions
CI / release-firmware (nrf52840) (push) Blocked by required conditions
CI / release-firmware (rp2040) (push) Blocked by required conditions
CI / release-firmware (stm32) (push) Blocked by required conditions
Flawfinder Scan / Flawfinder (push) Waiting to run
* mesh-tab targets * update meshtab voltage divider * fix DIO1 wakeup * update mesh-tab tft configs * update mesh-tab ini * rotation fix; added ST7789 3.2" display * mesh-tab touch updates * mesh-tab: enable alert message menu * mesh-tab rotation upside-down * use MESH_TAB hardware model definition * use board definition for mesh-tab --------- Co-authored-by: mverch67 <manuel.verch@gmx.de>
59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
#ifndef _VARIANT_MESHTAB_DIY_
|
|
#define _VARIANT_MESHTAB_DIY_
|
|
|
|
#define HAS_TOUCHSCREEN 1
|
|
|
|
#define SLEEP_TIME 120
|
|
|
|
// Analog pins
|
|
#define BATTERY_PIN 4 // A battery voltage measurement pin, voltage divider connected here to measure battery voltage
|
|
// ratio of voltage divider (100k, 220k)
|
|
#define ADC_MULTIPLIER 1.6 // 1.45 + 10% for correction of display undervoltage.
|
|
#define ADC_CHANNEL ADC1_GPIO4_CHANNEL
|
|
|
|
// LED
|
|
#define LED_PIN 21
|
|
|
|
// Button
|
|
#define BUTTON_PIN 0
|
|
|
|
// Button
|
|
#define PIN_BUZZER 5
|
|
|
|
// GPS
|
|
#define GPS_RX_PIN 18
|
|
#define GPS_TX_PIN 17
|
|
|
|
// #define HAS_SDCARD 1
|
|
#define SPI_MOSI 13
|
|
#define SPI_SCK 12
|
|
#define SPI_MISO 11
|
|
#define SPI_CS 10
|
|
#define SDCARD_CS 6
|
|
|
|
// LORA MODULES
|
|
#define USE_SX1262
|
|
|
|
// LORA SPI
|
|
#define LORA_SCK 36
|
|
#define LORA_MISO 37
|
|
#define LORA_MOSI 35
|
|
#define LORA_CS 39
|
|
|
|
// LORA CONFIG
|
|
#define LORA_DIO0 -1 // a No connect on the SX1262 module
|
|
#define LORA_RESET 14
|
|
#define LORA_DIO1 15 // SX1262 IRQ
|
|
#define LORA_DIO2 40 // SX1262 BUSY
|
|
#define LORA_DIO3 // Not connected on PCB, but internally on the TTGO SX1262
|
|
|
|
#define SX126X_CS LORA_CS
|
|
#define SX126X_DIO1 LORA_DIO1
|
|
#define SX126X_DIO2_AS_RF_SWITCH
|
|
#define SX126X_BUSY LORA_DIO2
|
|
#define SX126X_RESET 14
|
|
#define SX126X_RXEN 47
|
|
#define SX126X_TXEN RADIOLIB_NC // Assuming that DIO2 is connected to TXEN pin
|
|
|
|
#endif
|