diff --git a/CHANGELOG.md b/CHANGELOG.md index db38022..d02eb61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log All notable changes to this project will be documented in this file. +## [1.1.4] - 2024-06-18 +- prepared for JL1101 Ethernet (ethernet.bin) + - Ethernet infos shown on status page + - new Ethernet config menu under Settings +- removed most deprecated function and used the new ones +- some design changes ## [1.1.3] - 2024-06-18 - [firmware] ESP-IDF v5 now full working - [firmware] LittleFS now fully implemented diff --git a/bin/debug.bin b/bin/debug.bin index 9e71a7c..adf1df3 100644 Binary files a/bin/debug.bin and b/bin/debug.bin differ diff --git a/bin/ethernet.bin b/bin/ethernet.bin new file mode 100644 index 0000000..9dde7c6 Binary files /dev/null and b/bin/ethernet.bin differ diff --git a/bin/generic.bin b/bin/generic.bin index 2bf0ec1..8f3b1c1 100644 Binary files a/bin/generic.bin and b/bin/generic.bin differ diff --git a/platformio.ini b/platformio.ini index fe33f2a..fb05bb1 100644 --- a/platformio.ini +++ b/platformio.ini @@ -44,7 +44,7 @@ platform = ${common.platform} framework = ${common.framework} board = ${common.board} lib_deps = ${common.lib_deps} -extra_scripts = scripts/GENdeploy.py +extra_scripts = scripts/ETHdeploy.py build_flags = ${common.build_flags} -DETHERNET build_src_flags = ${common.build_src_flags} diff --git a/scripts/OBdeploy.py b/scripts/ETHdeploy.py similarity index 84% rename from scripts/OBdeploy.py rename to scripts/ETHdeploy.py index 998c945..3d557fb 100644 --- a/scripts/OBdeploy.py +++ b/scripts/ETHdeploy.py @@ -11,7 +11,7 @@ # def after_build(source, target, env): - shutil.copy(firmware_source, 'bin/forV2Board.bin') + shutil.copy(firmware_source, 'bin/ethernet.bin') env.AddPostAction("buildprog", after_build) diff --git a/src/main.cpp b/src/main.cpp index 6441dfb..aaaeee6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -23,7 +23,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#define VERSION "1.1.3" +#define VERSION "1.1.4" #include "Arduino.h" #include