Browse Source

Merge pull request #969 from mcspr/travis-modules

Cover more modules with travis
v2
Xose Pérez 6 years ago
committed by GitHub
parent
commit
c791dd9b0f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 5 deletions
  1. +15
    -1
      code/espurna/config/hardware.h
  2. +4
    -4
      code/platformio.ini

+ 15
- 1
code/espurna/config/hardware.h View File

@ -2400,6 +2400,8 @@
#define EMON_ADS1X15_SUPPORT 1
#define SHT3X_I2C_SUPPORT 1
#define SI7021_SUPPORT 1
#define PMSX003_SUPPORT 1
#define SENSEAIR_SUPPORT 1
// A bit of lights - pin 5
@ -2480,7 +2482,7 @@
#define MHZ19_TX_PIN 10
// PZEM004T
#define PZEM004T_SUPPORT 0 // not working?
#define PZEM004T_SUPPORT 1
#define PZEM004T_RX_PIN 11
#define PZEM004T_TX_PIN 12
@ -2492,6 +2494,13 @@
#define GUVAS12SD_SUPPORT 1
#define GUVAS12SD_PIN 14
// Test non-default modules
#define MDNS_CLIENT_SUPPORT 1
#define NOFUSS_SUPPORT 1
#define UART_MQTT_SUPPORT 1
#define INFLUXDB_SUPPORT 1
#define IR_SUPPORT 1
#elif defined(TRAVIS03)
// Relay provider light/my92XX
@ -2515,6 +2524,11 @@
#define EMON_ANALOG_SUPPORT 1
#endif
// Test non-default modules
#define LLMNR_SUPPORT 1
#define NETBIOS_SUPPORT 1
#define SSDP_SUPPORT 1
#endif
// -----------------------------------------------------------------------------


+ 4
- 4
code/platformio.ini View File

@ -154,7 +154,7 @@ monitor_speed = 115200
extra_scripts = ${common.extra_scripts}
[env:travis02]
platform = ${common.platform}
platform = ${common.platform_172}
framework = arduino
board = esp12e
lib_deps = ${common.lib_deps}
@ -164,7 +164,7 @@ monitor_speed = 115200
extra_scripts = ${common.extra_scripts}
[env:travis03]
platform = espressif8266@1.6.0
platform = ${common.platform_172}
framework = arduino
board = esp12e
lib_deps = ${common.lib_deps}
@ -189,7 +189,7 @@ monitor_speed = 115200
extra_scripts = ${common.extra_scripts}
[env:wemos-d1mini-relayshield-ssl]
platform = espressif8266@1.6.0
platform = ${common.platform_172}
framework = arduino
board = d1_mini
lib_deps = ${common.lib_deps}
@ -223,7 +223,7 @@ monitor_speed = 115200
extra_scripts = ${common.extra_scripts}
[env:nodemcu-lolin-ssl]
platform = espressif8266@1.6.0
platform = ${common.platform_172}
framework = arduino
board = nodemcuv2
lib_deps = ${common.lib_deps}


Loading…
Cancel
Save