Skip to content

Commit

Permalink
1.1.4 prepared for JL1101 Ethernet
Browse files Browse the repository at this point in the history
  • Loading branch information
pvtex committed Jun 18, 2024
1 parent c8d6d51 commit 678c062
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Binary file modified bin/debug.bin
Binary file not shown.
Binary file added bin/ethernet.bin
Binary file not shown.
Binary file modified bin/generic.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion scripts/OBdeploy.py → scripts/ETHdeploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <WiFi.h>
Expand Down

0 comments on commit 678c062

Please sign in to comment.