Skip to content

Commit

Permalink
Version 3.4.0-dev+20200216
Browse files Browse the repository at this point in the history
  • Loading branch information
sidey79 committed Feb 15, 2020
1 parent 812b5e7 commit 019620e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SIGNALDuino uC v3.3.1 with cc1101 support
# SIGNALDuino uC v3.4.0-development with cc1101 support
[![Build Status](https://travis-ci.org/RFD-FHEM/SIGNALDuino.svg?branch=master)](https://travis-ci.org/RFD-FHEM/SIGNALDuino)

### Getting started
Expand Down Expand Up @@ -57,6 +57,4 @@ First, sorry. This software is not perfect.
4. Create a branch (git checkout -b my_branch)
5. Commit your changes (git commit -am "<some description>")
6 .Push to a developer branch (git push dev-<xyz >my_branch)
7. Open a Pull Request, put some useful informations there, what your extension does and why we should add it, reference to the open issues which are fixed whith this pull requet.


7. Open a Pull Request, put some useful informations there, what your extension does and why we should add it, reference to the open issues which are fixed whith this pull requet.
15 changes: 13 additions & 2 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html

[platformio]
default_envs = esp8266@test
default_envs = esp8266@latest
; default_envs = esp32dev
test_dir = tests/

Expand All @@ -28,7 +28,7 @@ monitor_port = /dev/ttyUSB0
monitor_speed = 115200
lib_deps =

[env:esp8266@test]
[env:esp8266@2.2.2]
platform = [email protected]
board = nodemcuv2
framework = arduino
Expand All @@ -45,6 +45,17 @@ build_flags=-D DEBUG -D CMP_CC1101
platform = espressif8266
board = nodemcuv2
framework = arduino
;upload_port = COM7
;upload_speed = 115200
monitor_port = COM7
monitor_speed = 115200
lib_deps =
build_flags=-D CMP_CC1101

[env:esp8266@latest-debug]
platform = espressif8266
board = nodemcuv2
framework = arduino
upload_port = COM7
;upload_speed = 115200
monitor_port = COM7
Expand Down
2 changes: 1 addition & 1 deletion src/signalesp.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#if defined (ESP32) || defined(ESP8266)
#include "compile_config.h"
#define PROGVERS "3.4.0-dev"
#define PROGVERS "3.4.0-dev+20200216"
#define PROGNAME " SIGNALESP "
#define VERSION_1 0x33
#define VERSION_2 0x1d
Expand Down

0 comments on commit 019620e

Please sign in to comment.