2018-11-25 16:35:36 +01:00
|
|
|
// clang-format off
|
2019-06-30 17:48:24 +02:00
|
|
|
// upload_speed 921600
|
|
|
|
// board esp32dev
|
2018-11-25 16:35:36 +01:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
#ifndef _TTGOV21NEW_H
|
|
|
|
#define _TTGOV21NEW_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-09-17 17:23:02 +02:00
|
|
|
/* Hardware related definitions for TTGO V2.1 Board
|
|
|
|
// ATTENTION: check your board version!
|
|
|
|
// This settings are for boards labeled v1.6 on pcb, NOT for v1.5 or older
|
|
|
|
*/
|
2020-02-25 15:47:15 +01:00
|
|
|
|
2018-09-17 17:23:02 +02:00
|
|
|
#define HAS_LORA 1 // comment out if device shall not send data via LoRa
|
|
|
|
#define CFG_sx1276_radio 1 // HPD13A LoRa SoC
|
|
|
|
|
2019-12-25 23:07:34 +01:00
|
|
|
// enable only if you want to store a local paxcount table on the device
|
2020-06-06 21:16:04 +02:00
|
|
|
#define HAS_SDCARD 2 // this board has an SD-card-reader/writer
|
2019-12-25 23:07:34 +01:00
|
|
|
|
2019-09-27 12:47:00 +02:00
|
|
|
#define HAS_DISPLAY 1
|
2018-10-21 19:00:20 +02:00
|
|
|
#define HAS_LED (25) // green on board LED
|
2019-03-23 11:02:47 +01:00
|
|
|
#define BAT_MEASURE_ADC ADC1_GPIO35_CHANNEL // battery probe GPIO pin -> ADC1_CHANNEL_7
|
|
|
|
#define BAT_VOLTAGE_DIVIDER 2 // voltage divider 100k/100k on board
|
2018-09-17 17:23:02 +02:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
// Pins for I2C interface of OLED Display
|
2020-04-01 15:12:48 +02:00
|
|
|
#define MY_DISPLAY_SDA (21)
|
|
|
|
#define MY_DISPLAY_SCL (22)
|
|
|
|
#define MY_DISPLAY_RST NOT_A_PIN
|
2018-09-17 17:23:02 +02:00
|
|
|
|
2018-10-21 22:24:45 +02:00
|
|
|
// Pins for LORA chip SPI interface, reset line and interrupt lines
|
2018-10-21 22:16:29 +02:00
|
|
|
#define LORA_SCK (5)
|
|
|
|
#define LORA_CS (18)
|
|
|
|
#define LORA_MISO (19)
|
|
|
|
#define LORA_MOSI (27)
|
|
|
|
#define LORA_RST (23)
|
2018-11-20 15:02:37 +01:00
|
|
|
#define LORA_IRQ (26)
|
2018-10-21 22:16:29 +02:00
|
|
|
#define LORA_IO1 (33)
|
|
|
|
#define LORA_IO2 (32)
|
2018-09-17 17:23:02 +02:00
|
|
|
|
2020-02-19 13:58:58 +01:00
|
|
|
#endif
|