2018-11-25 16:35:36 +01:00
|
|
|
// clang-format off
|
2019-06-30 17:48:24 +02:00
|
|
|
// upload_speed 115200
|
|
|
|
// board ttgo-lora32-v1
|
2018-11-25 16:35:36 +01:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
#ifndef _TTGOV1_H
|
|
|
|
#define _TTGOV1_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-03-21 21:53:42 +01:00
|
|
|
// Hardware related definitions for TTGOv1 board
|
2018-03-20 21:38:41 +01:00
|
|
|
|
2018-08-11 19:12:04 +02:00
|
|
|
#define HAS_LORA 1 // comment out if device shall not send data via LoRa
|
2018-03-25 20:34:44 +02:00
|
|
|
#define CFG_sx1276_radio 1
|
|
|
|
|
2019-09-27 12:47:00 +02:00
|
|
|
#define HAS_DISPLAY 1 // OLED-Display on board
|
2018-04-03 23:42:43 +02:00
|
|
|
//#define DISPLAY_FLIP 1 // uncomment this for rotated display
|
2019-01-19 19:54:54 +01:00
|
|
|
#define HAS_LED LED_BUILTIN
|
2018-06-10 21:46:58 +02:00
|
|
|
#define LED_ACTIVE_LOW 1 // Onboard LED is active when pin is LOW
|
2019-01-19 19:54:54 +01:00
|
|
|
#define HAS_BUTTON KEY_BUILTIN
|
2018-03-20 21:38:41 +01:00
|
|
|
|
2019-12-25 23:07:34 +01:00
|
|
|
// enable only if you want to store a local paxcount table on the device
|
|
|
|
#define HAS_SDCARD 1 // this board has an SD-card-reader/writer
|
|
|
|
// Pins for SD-card
|
|
|
|
#define SDCARD_CS (13)
|
|
|
|
#define SDCARD_MOSI (15)
|
|
|
|
#define SDCARD_MISO (2)
|
|
|
|
#define SDCARD_SCLK (14)
|
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
// Pins for I2C interface of OLED Display
|
2019-02-09 23:05:56 +01:00
|
|
|
#define MY_OLED_SDA (4)
|
|
|
|
#define MY_OLED_SCL (15)
|
2019-02-04 20:56:38 +01:00
|
|
|
#define MY_OLED_RST (16)
|
2019-01-19 19:54:54 +01:00
|
|
|
|
2020-03-17 22:31:34 +01:00
|
|
|
// This board reports back the wrong I2C address, so we overwrite it here
|
|
|
|
#define MY_OLED_ADDR 0x3C
|
|
|
|
|
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_IO1 (33)
|
|
|
|
#define LORA_IO2 LMIC_UNUSED_PIN
|
2018-03-20 21:38:41 +01:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
#endif
|