fixed some type: tasmota/tasmota_configurations_ESP32.h

moved AGPIO(GPIO_SDM230_XX) to the end:       tasmota/tasmota_template_legacy.h
This commit is contained in:
Marcus 2021-10-23 15:16:35 +02:00
parent 3d1df968a4
commit 66ac4977c0
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,4 @@
/*
tasmota_configurations_ESP32.h - ESP32 only Configurations for Tasmota tasmota_configurations_ESP32.h - ESP32 only Configurations for Tasmota
Copyright (C) 2021 Theo Arends Copyright (C) 2021 Theo Arends

View File

@ -473,9 +473,9 @@ const uint16_t kGpioConvert[] PROGMEM = {
AGPIO(GPIO_IEM3000_TX), // IEM3000 Serial interface AGPIO(GPIO_IEM3000_TX), // IEM3000 Serial interface
AGPIO(GPIO_IEM3000_RX), // IEM3000 Serial interface AGPIO(GPIO_IEM3000_RX), // IEM3000 Serial interface
AGPIO(GPIO_ZIGBEE_RST), // Zigbee reset AGPIO(GPIO_ZIGBEE_RST), // Zigbee reset
AGPIO(GPIO_DYP_RX),
AGPIO(GPIO_SDM230_TX), // SDM230 Serial interface AGPIO(GPIO_SDM230_TX), // SDM230 Serial interface
AGPIO(GPIO_SDM230_RX), // SDM230 Serial interface AGPIO(GPIO_SDM230_RX) // SDM230 Serial interface
AGPIO(GPIO_DYP_RX)
}; };
/********************************************************************************************/ /********************************************************************************************/