Skip to content

Commit

Permalink
support X12 device
Browse files Browse the repository at this point in the history
  • Loading branch information
Caffreyfans committed May 24, 2020
1 parent 0d1117f commit 0c79570
Show file tree
Hide file tree
Showing 8 changed files with 102 additions and 344 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ before_deploy:
- git config --global user.name "Caffreyfans"
- git config --global user.email "Caffreyfans@163.com"
- mkdir tmp && cd tmp
- cp ../.pio/build/esp12e/firmware.bin IRbaby.bin
- cp ../.pio/build/esp8266-2m*/firmware.bin IRbaby2m.bin
- cp ../.pio/build/esp8266-4m*/firmware.bin IRbaby4m.bin
- wget caffreyfans.top/download/FlashESP8266.exe
- wget caffreyfans.top/download/esptool.exe
- zip -q IRbaby.zip *
Expand All @@ -30,7 +31,6 @@ deploy:
secure: q+V3ixBe1GJUwkX7dkjek/X8H9lCjkLVgh+BeXD2rOIJe2naB3u4q9LHWFElfh0za+9Bcz1dqyRVcLlbjKpZI0yXcVoNhvd8rlmiFs9Y8l47citaiB+c0vZuZ0afIEBnDnzgDeXSWyF97LmUy9z43A/JkjtyWFxxnVNLjLD2QrqPyFRaVDim8ihXZsxZLgEuHTd1a8nLmaUj1tfWK1A0Ozy5vQqc7PWl6cUj6t6DZw5+FmTAr9j6VYfQvLVfqPlAPicRq4Nn+XqU+Uqlem8f4nE7G301OCw2Kaa6o0tPAAfZ2XF30vu//CE22DudU2yqA2d0utHgDggDACRtwmA9+Fel2Cd7owGxUoAIIBsTEnQEiGMLrYgSOD2NVSfl/By4H2/zzw0ULJyUWGESJymN+H/CJbl1UmPxZw5QemUh8S6KvbzGL379cJYLOlhoupaH7lxH/ImLu3VL5ksSNH2elSBvMu7mFP7SAVe9M6SO+d8HfSW7jKm0H1M9sVoddAzbVpzSxt1qiJTccmn66O7ANHeSYq8HHOeDiewe+Oy2vk5iZomiokBg1ymlcw9ed3GlgB3HG1/DZk90wVgzBMvduG9hcZbf8yJS5kAx/fbU9ISd22KBuWEukOkDCorwbbKUVTpFYdvjnDvkkc0KAiKwBcqfO8qrsfG9cC4F5jBEeQA=
file:
- IRbaby.zip
- IRbaby.bin
skip_cleanup: true
on:
tags: true
324 changes: 0 additions & 324 deletions lib/Irext/ir_decode_test.c

This file was deleted.

33 changes: 26 additions & 7 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,36 @@
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
# 487 KB sketch, 4 KB eeprom, 16 KB reserved, no space for ota
[common]
board_512k = esp01
ldscript_512k = eagle.flash.512k0m1s.ld

[env:esp12e]
# 1019 KB sketch, 16 KB eeprom, 992 KB fs, 16 KB reserved
board_2m = esp_wroom_02
ldscript_2m = eagle.flash.2m256.ld

# 1019 KB sketch, 16 KB eeprom, 992 KB fs, 16 KB reserved, 2048 KB empty/ota
board_4m = esp12e
ldscript_4m = eagle.flash.4m1m.ld

[env]
platform = espressif8266
board = esp12e
framework = arduino
monitor_speed = 115200
upload_speed = 115200
board_build.flash_mode = dout

[env:esp8266-2m-base]
board = ${common.board_2m}
board_build.ldscript = ${common.ldscript_2m}

; [env:esp01]
[env:esp8266-4m-base]
board = ${common.board_4m}
board_build.ldscript = ${common.ldscript_4m}
; [esp:Wroom2M]
; platform = espressif8266
; board = esp01
; framework = arduino
; monitor_speed = 115200
; upload_speed = 115200
; board = esp12e
; board_build.flash_mode = dout
; board_upload.maximum_size = 1044464
; board_build.ldscript = eagle.flash.2m.ld
Loading

0 comments on commit 0c79570

Please sign in to comment.