|
| 1 | +Brew Bubbles preservation manifest |
| 2 | +================================== |
| 3 | + |
| 4 | +Release: 2.2.3 |
| 5 | +Release URL: https://github.com/lbussy/brew-bubbles/releases/tag/2.2.3 |
| 6 | +Release source commit: |
| 7 | +e6ef7c2dbbb77c74b7d83dc42bed159a5f17eecf |
| 8 | + |
| 9 | +Release source commit metadata: |
| 10 | +commit=e6ef7c2dbbb77c74b7d83dc42bed159a5f17eecf |
| 11 | +author_date=2021-02-21T09:58:17-06:00 |
| 12 | +commit_date=2021-02-21T09:58:17-06:00 |
| 13 | +subject=Fix NTP with lwIP 1.4 |
| 14 | + |
| 15 | +Hardware target: Wemos D1 Mini / ESP8266 |
| 16 | +Flash capacity: 4 MB / 32 Mbit |
| 17 | +Firmware address: 0x000000 |
| 18 | +LittleFS address: 0x300000 |
| 19 | +Upload speed: 460800 |
| 20 | +Serial monitor speed: 74880 |
| 21 | + |
| 22 | +Archived artifact checksums: |
| 23 | +08becff15e539e207205b779a1c0fc8bd6320683762fca8a003e6f8610365709 firmware.bin |
| 24 | +529498dc4eae9c24c537891ac019b685dcbfd85e854316547b88796b11bffdda littlefs.bin |
| 25 | +13203bec47ca42896b11aa65ad525eae75f43c2e24252b2b7c7978ac67d676b8 source-2.2.3.tar.gz |
| 26 | + |
| 27 | +Repository PlatformIO configuration at release: |
| 28 | +; PlatformIO Project Configuration File |
| 29 | +; |
| 30 | +; Build options: build flags, source filter |
| 31 | +; Upload options: custom upload port, speed and extra flags |
| 32 | +; Library options: dependencies, extra library storages |
| 33 | +; Advanced options: extra scripting |
| 34 | +; |
| 35 | +; Please visit documentation for the other options and examples |
| 36 | +; https://docs.platformio.org/page/projectconf.html |
| 37 | + |
| 38 | +[common_env_data] |
| 39 | +upload_speed = 460800 ; 921600 // MacBook can't handle the heat! |
| 40 | +monitor_speed = 74880 |
| 41 | +monitor_filters = |
| 42 | + ; esp8266_exception_decoder |
| 43 | + ; log2file |
| 44 | +framework = arduino |
| 45 | +platform = espressif8266 |
| 46 | +build_unflags = |
| 47 | +build_flags = |
| 48 | + !python tools/git_rev.py |
| 49 | + -D PIO_SRC_TAG=2.2.3Beta |
| 50 | + -D BAUD=${common_env_data.monitor_speed} |
| 51 | + ; -D DEBUG_ESP_PORT=Serial |
| 52 | + ; -D DEBUG_ESP_WIFI |
| 53 | + ; -D DEBUG_ESP_HTTP_UPDATE |
| 54 | + ; -D DEBUG_ESP_HTTP_CLIENT |
| 55 | + ; -D DEBUG_ESP_UPDATE |
| 56 | + ; -D DEBUG_ESP_OTA |
| 57 | + ; -D DEBUG_ESP_OOM |
| 58 | + ; -include "umm_malloc/umm_malloc_cfg.h" |
| 59 | + ; -D DEBUG_ESP_CORE |
| 60 | + ; -D PIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY ; v2 Lower Memory (default) |
| 61 | + ; -D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH ; v2 Higher Bandwidth |
| 62 | + ; -D PIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY_LOW_FLASH ; v2 Lower Memory (no features) |
| 63 | + ; -D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH_LOW_FLASH ; v2 Higher Bandwidth (no features) |
| 64 | + ; -D PIO_FRAMEWORK_ARDUINO_LWIP2_IPV6_LOW_MEMORY ; v2 IPv6 Lower Memory |
| 65 | + ; -D PIO_FRAMEWORK_ARDUINO_LWIP2_IPV6_HIGHER_BANDWIDTH ; v2 IPv6 Higher Bandwidth |
| 66 | + -D PIO_FRAMEWORK_ARDUINO_LWIP_HIGHER_BANDWIDTH ; v1.4 Higher Bandwidth (Needed because of stream errors getting Filesystem OTA) |
| 67 | +extra_scripts = ; pre:python tools\name_firmware.py |
| 68 | +lib_deps = |
| 69 | + ArduinoJson |
| 70 | + https://github.com/lbussy/OneWire.git |
| 71 | + https://github.com/lbussy/DS18B20.git |
| 72 | + https://github.com/lbussy/Arduino-Log.git |
| 73 | + https://github.com/lbussy/ESPAsyncTCP |
| 74 | + https://github.com/lbussy/ESPAsyncWebServer.git |
| 75 | + https://github.com/lbussy/AsyncWiFiManager.git |
| 76 | + https://github.com/lbussy/asyncHTTPrequest.git |
| 77 | + https://github.com/lbussy/CircularBuffer.git |
| 78 | + https://github.com/lbussy/LCBUrl.git |
| 79 | + https://github.com/lbussy/esptelnet.git |
| 80 | + khoih-prog/ESP_WiFiManager |
| 81 | + https://github.com/lbussy/ThingSpeak |
| 82 | +monitor_filters = |
| 83 | + ; esp8266_exception_decoder |
| 84 | + ; log2file |
| 85 | +build_type = release ; Cannot use debug with Wemos D1 |
| 86 | + |
| 87 | +[env:d1_mini] |
| 88 | +board_build.filesystem = littlefs |
| 89 | +upload_speed = ${common_env_data.upload_speed} |
| 90 | +monitor_speed = ${common_env_data.monitor_speed} |
| 91 | +framework = ${common_env_data.framework} |
| 92 | +platform = ${common_env_data.platform} |
| 93 | +build_unflags = ${common_env_data.build_unflags} |
| 94 | +build_flags = |
| 95 | + ${common_env_data.build_flags} |
| 96 | + -D USE_LITTLEFS |
| 97 | +extra_scripts = ${common_env_data.extra_scripts} |
| 98 | +lib_deps = ${common_env_data.lib_deps} |
| 99 | +monitor_filters = ${common_env_data.monitor_filters} |
| 100 | +build_type = ${common_env_data.build_type} |
| 101 | +board = d1_mini |
0 commit comments