Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.0.5] Update Heltec ESP32 series boards definition #4577

Merged
merged 4 commits into from
Dec 2, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
431 changes: 210 additions & 221 deletions boards.txt

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion variants/heltec_wifi_kit_32/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

static const uint8_t LED_BUILTIN = 25;
#define BUILTIN_LED LED_BUILTIN // backward compatibility
#define LED_BUILTIN LED_BUILTIN
me-no-dev marked this conversation as resolved.
Show resolved Hide resolved

static const uint8_t KEY_BUILTIN = 0;

Expand Down
3 changes: 1 addition & 2 deletions variants/heltec_wifi_lora_32/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <stdint.h>

#define WIFI_LoRa_32
#define WIFI_LoRa_32 true
#define DISPLAY_HEIGHT 64
#define DISPLAY_WIDTH 128

Expand All @@ -17,7 +17,6 @@

static const uint8_t LED_BUILTIN = 25;
#define BUILTIN_LED LED_BUILTIN // backward compatibility
#define LED_BUILTIN LED_BUILTIN
me-no-dev marked this conversation as resolved.
Show resolved Hide resolved

static const uint8_t KEY_BUILTIN = 0;

Expand Down
3 changes: 1 addition & 2 deletions variants/heltec_wifi_lora_32_V2/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <stdint.h>

#define WIFI_LoRa_32_V2
#define WIFI_LoRa_32_V2 true
#define DISPLAY_HEIGHT 64
#define DISPLAY_WIDTH 128

Expand All @@ -17,7 +17,6 @@

static const uint8_t LED_BUILTIN = 25;
#define BUILTIN_LED LED_BUILTIN // backward compatibility
#define LED_BUILTIN LED_BUILTIN
me-no-dev marked this conversation as resolved.
Show resolved Hide resolved

static const uint8_t KEY_BUILTIN = 0;

Expand Down
3 changes: 1 addition & 2 deletions variants/heltec_wireless_stick/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <stdint.h>

#define Wireless_Stick
#define Wireless_Stick true
#define DISPLAY_HEIGHT 32
#define DISPLAY_WIDTH 64

Expand All @@ -17,7 +17,6 @@

static const uint8_t LED_BUILTIN = 25;
#define BUILTIN_LED LED_BUILTIN // backward compatibility
#define LED_BUILTIN LED_BUILTIN
me-no-dev marked this conversation as resolved.
Show resolved Hide resolved

static const uint8_t KEY_BUILTIN = 0;

Expand Down
72 changes: 72 additions & 0 deletions variants/heltec_wireless_stick_lite/pins_arduino.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
#ifndef Pins_Arduino_h
#define Pins_Arduino_h

#include <stdint.h>

#define Wireless_Stick_Lite true
#define DISPLAY_HEIGHT 0
#define DISPLAY_WIDTH 0

#define EXTERNAL_NUM_INTERRUPTS 16
#define NUM_DIGITAL_PINS 40
#define NUM_ANALOG_INPUTS 16

#define analogInputToDigitalPin(p) (((p)<20)?(esp32_adc2gpio[(p)]):-1)
#define digitalPinToInterrupt(p) (((p)<40)?(p):-1)
#define digitalPinHasPWM(p) (p < 34)

static const uint8_t LED_BUILTIN = 25;
#define BUILTIN_LED LED_BUILTIN // backward compatibility
me-no-dev marked this conversation as resolved.
Show resolved Hide resolved

static const uint8_t KEY_BUILTIN = 0;

static const uint8_t TX = 1;
static const uint8_t RX = 3;

static const uint8_t SDA = 21;
static const uint8_t SCL = 22;

static const uint8_t SS = 18;
static const uint8_t MOSI = 27;
static const uint8_t MISO = 19;
static const uint8_t SCK = 5;

static const uint8_t A0 = 36;
static const uint8_t A3 = 39;
static const uint8_t A4 = 32;
static const uint8_t A5 = 33;
static const uint8_t A6 = 34;
static const uint8_t A7 = 35;
static const uint8_t A10 = 4;
static const uint8_t A11 = 0;
static const uint8_t A12 = 2;
static const uint8_t A13 = 15;
static const uint8_t A14 = 13;
static const uint8_t A15 = 12;
static const uint8_t A16 = 14;
static const uint8_t A17 = 27;
static const uint8_t A18 = 25;
static const uint8_t A19 = 26;

static const uint8_t T0 = 4;
static const uint8_t T1 = 0;
static const uint8_t T2 = 2;
static const uint8_t T3 = 15;
static const uint8_t T4 = 13;
static const uint8_t T5 = 12;
static const uint8_t T6 = 14;
static const uint8_t T7 = 27;
static const uint8_t T8 = 33;
static const uint8_t T9 = 32;

static const uint8_t DAC1 = 25;
static const uint8_t DAC2 = 26;

static const uint8_t Vext = 21;
static const uint8_t LED = 25;
static const uint8_t RST_LoRa = 14;
static const uint8_t DIO0 = 26;
static const uint8_t DIO1 = 35;
static const uint8_t DIO2 = 34;

#endif /* Pins_Arduino_h */