meshtastic-firmware/variants/eink/variant.h

238 wiersze
7.3 KiB
C
Czysty Zwykły widok Historia

2020-09-24 21:36:43 +00:00
/*
Copyright (c) 2014-2015 Arduino LLC. All right reserved.
Copyright (c) 2016 Sandeep Mistry All right reserved.
Copyright (c) 2018, Adafruit Industries (adafruit.com)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
2020-09-26 19:40:15 +00:00
#ifndef _VARIANT_TTGO_EINK_V1_
#define _VARIANT_TTGO_EINK_V1_
2020-09-24 21:36:43 +00:00
/** Master clock frequency */
#define VARIANT_MCK (64000000ul)
#define USE_LFXO // Board uses 32khz crystal for LF
/*
@geeksville eink TODO:
2020-09-28 20:03:37 +00:00
soonish:
2020-09-28 23:08:52 +00:00
DONE hook cdc acm device to debug output
DONE fix bootloader to use two buttons - remove bootloader hacks
2020-09-28 21:09:19 +00:00
DONE get second button working in app load
2020-09-28 23:08:52 +00:00
DONE use tp_ser_io as a button, it goes high when pressed unify eink display classes
fix display width and height
2020-09-26 16:40:48 +00:00
clean up eink drawing to not have the nasty timeout hack
2020-09-28 20:03:37 +00:00
measure current draws
2020-09-28 23:08:52 +00:00
DONE put eink to sleep when we think the screen is off
enable gps sleep mode
2020-09-28 23:08:52 +00:00
turn off txco on lora?
2020-09-28 20:03:37 +00:00
make screen.adjustBrightness() a nop on eink screens
later:
2020-09-28 23:08:52 +00:00
enable flash on qspi.
2020-09-28 20:03:37 +00:00
fix floating point SEGGER printf on nrf52 - see "new NMEA GPS pos"
2020-09-26 19:33:47 +00:00
add factory/power on self test
2020-09-28 20:03:37 +00:00
feedback to give:
2020-09-28 23:08:52 +00:00
* bootloader is finished
* the capacitive touch sensor works, though I'm not sure what use you are intending for it
2020-09-28 21:09:19 +00:00
* remove ipx connector for nfc, instead use two caps and loop traces on the back of the board as an antenna?
2020-09-28 23:08:52 +00:00
* the i2c RTC seems to talk fine on the i2c bus. However, I'm not sure of the utility of that part. Instead I'd be in favor of the following:
* move BAT1 to power the GPS VBACKUP instead per page 6 of the Air530 datasheet. And remove the i2c RTC entirely.
* remove the cp2014 chip.
2020-09-28 22:18:32 +00:00
2020-09-28 21:09:19 +00:00
* I've made the serial flash chip work, but if you do a new spin of the board I recommend:
2020-09-28 23:08:52 +00:00
connect pin 3 and pin 7 of U4 to spare GPIOs on the processor (instead of their current connections),
2020-09-28 22:18:32 +00:00
This would allow using 4 bit wide interface mode to the serial flash - doubling the transfer speed! see example here:
2020-09-28 21:09:19 +00:00
https://infocenter.nordicsemi.com/topic/ug_nrf52840_dk/UG/nrf52840_DK/hw_external_memory.html?cp=4_0_4_7_4
2020-09-28 23:08:52 +00:00
Once again - I'm glad you added that external flash chip.
2020-09-28 22:18:32 +00:00
2020-09-24 21:36:43 +00:00
*/
/*----------------------------------------------------------------------------
* Headers
*----------------------------------------------------------------------------*/
#include "WVariant.h"
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
// Number of pins defined in PinDescription array
#define PINS_COUNT (48)
#define NUM_DIGITAL_PINS (48)
#define NUM_ANALOG_INPUTS (1)
#define NUM_ANALOG_OUTPUTS (0)
// LEDs
2020-09-26 17:53:02 +00:00
#define PIN_LED1 (0 + 13) // green (but red on my prototype)
#define PIN_LED2 (0 + 15) // blue (but red on my prototype)
#define PIN_LED3 (0 + 14) // red (not functional on my prototype)
2020-09-24 21:36:43 +00:00
#define LED_RED PIN_LED3
2020-09-24 21:36:43 +00:00
#define LED_GREEN PIN_LED1
#define LED_BLUE PIN_LED2
2020-09-24 21:36:43 +00:00
#define LED_BUILTIN LED_GREEN
2020-09-26 16:40:48 +00:00
#define LED_CONN PIN_BLUE
2020-09-24 21:36:43 +00:00
#define LED_STATE_ON 0 // State when LED is lit
2020-09-26 17:53:02 +00:00
#define LED_INVERTED 1
2020-09-24 21:36:43 +00:00
/*
* Buttons
*/
#define PIN_BUTTON1 (32 + 10)
#define PIN_BUTTON2 (0 + 18) // 0.18 is labeled on the board as RESET but we configure it in the bootloader as a regular GPIO
2020-09-24 21:36:43 +00:00
/*
* Analog pins
*/
#define PIN_A0 (4) // Battery ADC
2020-09-27 01:13:16 +00:00
#define BATTERY_PIN PIN_A0
2020-09-24 21:36:43 +00:00
static const uint8_t A0 = PIN_A0;
2020-09-24 21:36:43 +00:00
#define ADC_RESOLUTION 14
#define PIN_NFC1 (9)
#define PIN_NFC2 (10)
/*
* Serial interfaces
*/
/*
2020-09-28 21:09:19 +00:00
No longer populated on PCB
2020-09-24 21:36:43 +00:00
*/
2020-09-28 21:09:19 +00:00
//#define PIN_SERIAL2_RX (0 + 6)
//#define PIN_SERIAL2_TX (0 + 8)
// #define PIN_SERIAL2_EN (0 + 17)
2020-09-24 21:36:43 +00:00
2020-09-26 19:40:15 +00:00
/**
Wire Interfaces
*/
2020-09-24 21:36:43 +00:00
#define WIRE_INTERFACES_COUNT 1
#define PIN_WIRE_SDA (26) // Not connected on board?
2020-09-24 21:36:43 +00:00
#define PIN_WIRE_SCL (27)
2020-09-25 16:14:00 +00:00
/* touch sensor, active high */
2020-09-24 21:36:43 +00:00
#define TP_SER_IO (0 + 11)
2020-09-24 21:36:43 +00:00
#define PIN_RTC_INT (0 + 16) // Interrupt from the PCF8563 RTC
/*
2020-09-28 21:09:19 +00:00
External serial flash WP25R1635FZUIL0
*/
// QSPI Pins
2020-09-28 21:09:19 +00:00
#define PIN_QSPI_SCK (32 + 14)
#define PIN_QSPI_CS (32 + 15)
#define PIN_QSPI_IO0 (32 + 12) // MOSI if using two bit interface
#define PIN_QSPI_IO1 (32 + 13) // MISO if using two bit interface
//#define PIN_QSPI_IO2 22 // WP if using two bit interface (i.e. not used)
//#define PIN_QSPI_IO3 23 // HOLD if using two bit interface (i.e. not used)
// On-board QSPI Flash
2020-09-28 21:09:19 +00:00
#define EXTERNAL_FLASH_DEVICES MX25R1635F
#define EXTERNAL_FLASH_USE_QSPI
2020-09-24 21:36:43 +00:00
/*
* Lora radio
*/
#define SX1262_CS (0 + 24) // FIXME - we really should define LORA_CS instead
#define SX1262_DIO1 (0 + 20)
2020-09-25 16:14:00 +00:00
// Note DIO2 is attached internally to the module to an analog switch for TX/RX switching
#define SX1262_DIO3 \
(0 + 21) // This is used as an *output* from the sx1262 and connected internally to power the tcxo, do not drive from the main
2020-09-25 16:14:00 +00:00
// CPU?
#define SX1262_BUSY (0 + 17)
#define SX1262_RESET (0 + 25)
2020-09-24 21:36:43 +00:00
#define SX1262_E22 // Not really an E22 but TTGO seems to be trying to clone that
// Internally the TTGO module hooks the SX1262-DIO2 in to control the TX/RX switch (which is the default for the sx1262interface
// code)
// #define LORA_DISABLE_SENDING // Define this to disable transmission for testing (power testing etc...)
2020-09-24 21:36:43 +00:00
/*
* eink display pins
*/
#define PIN_EINK_EN (32 + 11)
2020-09-26 16:40:48 +00:00
#define PIN_EINK_CS (0 + 30)
2020-09-24 21:36:43 +00:00
#define PIN_EINK_BUSY (0 + 3)
#define PIN_EINK_DC (0 + 28)
#define PIN_EINK_RES (0 + 2)
#define PIN_EINK_SCLK (0 + 31)
#define PIN_EINK_MOSI (0 + 29) // also called SDI
2020-09-24 21:36:43 +00:00
2020-09-28 20:03:37 +00:00
// Controls power for the eink display - Board power is enabled either by VBUS from USB or the CPU asserting PWR_ON
#define PIN_EINK_PWR_ON (0 + 12)
2020-09-26 16:40:48 +00:00
#define HAS_EINK
#define PIN_SPI1_MISO \
(32 + 7) // FIXME not really needed, but for now the SPI code requires something to be defined, pick an used GPIO
#define PIN_SPI1_MOSI PIN_EINK_MOSI
#define PIN_SPI1_SCK PIN_EINK_SCLK
2020-09-24 21:36:43 +00:00
/*
* Air530 GPS pins
*/
2020-09-28 20:03:37 +00:00
#define PIN_GPS_WAKE (32 + 2) // An output to wake GPS, low means allow sleep, high means force wake
#define PIN_GPS_PPS (32 + 4) // Pulse per second input from the GPS
#define PIN_GPS_TX (32 + 9) // This is for bits going TOWARDS the CPU
#define PIN_GPS_RX (32 + 8) // This is for bits going TOWARDS the GPS
2020-09-29 00:04:19 +00:00
#define HAS_AIR530_GPS
2020-09-26 17:53:02 +00:00
#define PIN_SERIAL1_RX PIN_GPS_TX
#define PIN_SERIAL1_TX PIN_GPS_RX
2020-09-24 21:36:43 +00:00
/*
* SPI Interfaces
*/
2020-09-26 16:40:48 +00:00
#define SPI_INTERFACES_COUNT 2
2020-09-24 21:36:43 +00:00
2020-09-28 23:08:52 +00:00
// For LORA, spi 0
#define PIN_SPI_MISO (0 + 23)
#define PIN_SPI_MOSI (0 + 22)
2020-09-24 21:36:43 +00:00
#define PIN_SPI_SCK (0 + 19)
// To debug via the segger JLINK console rather than the CDC-ACM serial device
2020-09-27 01:13:16 +00:00
#define USE_SEGGER
2020-09-24 21:36:43 +00:00
#ifdef __cplusplus
}
#endif
/*----------------------------------------------------------------------------
* Arduino objects - C++ only
*----------------------------------------------------------------------------*/
#endif