2018-11-25 16:35:36 +01:00
|
|
|
// clang-format off
|
2019-06-30 17:48:24 +02:00
|
|
|
// upload_speed 921600
|
|
|
|
// board ttgo-lora32-v1
|
2018-11-25 16:35:36 +01:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
#ifndef _TTGOV2_H
|
|
|
|
#define _TTGOV2_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-03-20 21:38:41 +01:00
|
|
|
// Hardware related definitions for TTGO V2 Board
|
|
|
|
|
2018-08-11 19:12:04 +02:00
|
|
|
#define HAS_LORA 1 // comment out if device shall not send data via LoRa
|
2018-03-21 21:53:42 +01:00
|
|
|
#define CFG_sx1276_radio 1 // HPD13A LoRa SoC
|
2018-03-20 21:38:41 +01:00
|
|
|
|
2019-09-27 12:47:00 +02:00
|
|
|
#define HAS_DISPLAY 1
|
2018-04-03 23:42:43 +02:00
|
|
|
//#define DISPLAY_FLIP 1 // uncomment this for rotated display
|
2018-06-10 21:46:58 +02:00
|
|
|
#define HAS_LED NOT_A_PIN // on-board LED is wired to SCL (used by display) therefore totally useless
|
2018-03-27 12:46:38 +02:00
|
|
|
|
|
|
|
// disable brownout detection (needed on TTGOv2 for battery powered operation)
|
|
|
|
#define DISABLE_BROWNOUT 1 // comment out if you want to keep brownout feature
|
2018-03-25 20:34:44 +02:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
// Pins for I2C interface of OLED Display
|
2019-02-04 20:53:27 +01:00
|
|
|
#define MY_OLED_SDA (21)
|
|
|
|
#define MY_OLED_SCL (22)
|
2019-09-27 12:47:00 +02:00
|
|
|
#define MY_OLED_RST NOT_A_PIN
|
2018-10-21 19:00:20 +02:00
|
|
|
|
2019-01-19 19:54:54 +01:00
|
|
|
// Pins for LORA chip SPI interface come from board file, we need some
|
|
|
|
// additional definitions for LMIC
|
2018-10-21 22:16:29 +02:00
|
|
|
#define LORA_RST LMIC_UNUSED_PIN
|
|
|
|
#define LORA_IO1 (33)
|
|
|
|
#define LORA_IO2 LMIC_UNUSED_PIN
|
2018-10-21 19:00:20 +02:00
|
|
|
|
2019-02-04 20:53:27 +01:00
|
|
|
#endif
|