mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-21 00:04:28 +01:00
[PR #431] [MERGED] Add new AP hardware support OpenEPaperLink_ESP32-PoE-ISO_AP #2740
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/OpenEPaperLink/OpenEPaperLink/pull/431
Author: @fk0815
Created: 1/15/2025
Status: ✅ Merged
Merged: 3/27/2025
Merged by: @nlimper
Base:
master← Head:master📝 Commits (8)
5cd7742Fix filesystem mutex handling223d7bdFix hard coded littlefs in json upload64b8029Add new AP hardware support OpenEPaperLink_ESP32-PoE-ISO_AP7dd5e29Avoid error message log print when parsers.json is missingfeae113Workaround for IEEE802.15.4 modem stuck issue154f33bAdd OpenEPaperLink_ESP32-PoE-ISO_AP to release buildb8eac51Add OpenEPaperLink_ESP32-PoE-ISO_AP to condidional build5fa3e53Add Ethernet support📊 Changes
19 files changed (+479 additions, -109 deletions)
View changed files
📝
.github/workflows/conditional-build-test.yml(+7 -1)📝
.github/workflows/release.yml(+32 -9)📝
ARM_Tag_FW/OpenEPaperLink_esp32_C6_AP/sdkconfig.defaults(+1 -1)➕
ESP32_AP-Flasher/esp32_sdcard_only.csv(+7 -0)📝
ESP32_AP-Flasher/include/storage.h(+6 -0)📝
ESP32_AP-Flasher/include/wifimanager.h(+5 -1)📝
ESP32_AP-Flasher/platformio.ini(+103 -48)➕
ESP32_AP-Flasher/prepare_sdcard.sh(+23 -0)📝
ESP32_AP-Flasher/src/leds.cpp(+6 -4)📝
ESP32_AP-Flasher/src/main.cpp(+9 -0)📝
ESP32_AP-Flasher/src/ota.cpp(+8 -6)📝
ESP32_AP-Flasher/src/serialap.cpp(+41 -2)📝
ESP32_AP-Flasher/src/storage.cpp(+74 -6)📝
ESP32_AP-Flasher/src/system.cpp(+1 -1)📝
ESP32_AP-Flasher/src/tag_db.cpp(+2 -0)📝
ESP32_AP-Flasher/src/tagdata.cpp(+4 -1)📝
ESP32_AP-Flasher/src/udp.cpp(+5 -4)📝
ESP32_AP-Flasher/src/web.cpp(+6 -4)📝
ESP32_AP-Flasher/src/wifimanager.cpp(+139 -21)📄 Description
This is based on Olimex ESP32-PoE-ISO
https://www.olimex.com/Products/IoT/ESP32/ESP32-POE-ISO/open-source-hardware
It has a SD Card slot that is used to store all filesystem data on SD.
Use the prepare_sdcard.sh script to copy all needed data to an empty
SD card that is formatted with FAT filesystem. The AP firmware will format
the SD if an unformatted or from formatted card is used. This can be used
to intially prepare an empty SD card for usage.
For tag communication a ESP32-C6-WROOM-1(U) is used with the following
connection scheme:
The AP has support for PoE/Ethernet, for that the new added Ethernet
support allows to make the network/internet connection
via LAN cable instead of WiFi. LAN is preferred, if a LAN cable is
connected and a valid IP configuration via DHCP can be obtained, WiFi
is switched off. If the LAN cable is disconnected, a fall back to
WiFi is done.
Use those defines in platform.ini for PHY settings:
Limitations:
cannot be used to clear the WiFi configuration.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.