[PR #79] [CLOSED] Add SDIO interface as alternative to SPI and allow for automated OTA via SDCard #1511

Closed
opened 2026-03-20 19:08:48 +01:00 by sascha_hemi · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/OpenEPaperLink/OpenEPaperLink/pull/79
Author: @Mimoja
Created: 7/7/2023
Status: Closed

Base: masterHead: sdio


📝 Commits (4)

  • 88c5ee7 Report SDCard status to frontend
  • 815e559 Add SDIO interface as second sdcard interface to save on pins
  • 7ea0321 Print currently running version at startup
  • db214c6 Allow for SDCard based OTA update

📊 Changes

9 files changed (+294 additions, -72 deletions)

View changed files

📝 ESP32_AP-Flasher/data/www/index.html (+1 -0)
📝 ESP32_AP-Flasher/data/www/main.js (+12 -0)
📝 ESP32_AP-Flasher/include/ota.h (+2 -1)
📝 ESP32_AP-Flasher/include/storage.h (+9 -1)
📝 ESP32_AP-Flasher/src/main.cpp (+28 -0)
📝 ESP32_AP-Flasher/src/ota.cpp (+73 -52)
📝 ESP32_AP-Flasher/src/serialap.cpp (+1 -1)
📝 ESP32_AP-Flasher/src/storage.cpp (+164 -17)
📝 ESP32_AP-Flasher/src/web.cpp (+4 -0)

📄 Description

db214c6 (HEAD -> sdio, mimoja/sdio) Allow for SDCard based OTA update
7ea0321 Print currently running version at startup
815e559 Add SDIO interface as second sdcard interface to save on pins
88c5ee7 Report SDCard status to frontend


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/OpenEPaperLink/OpenEPaperLink/pull/79 **Author:** [@Mimoja](https://github.com/Mimoja) **Created:** 7/7/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `sdio` --- ### 📝 Commits (4) - [`88c5ee7`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/88c5ee76be9b13b769cd33db1ee731b3bceb4a35) Report SDCard status to frontend - [`815e559`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/815e5593f6a02a064c3fdb32be1382d3da806a55) Add SDIO interface as second sdcard interface to save on pins - [`7ea0321`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/7ea03215485774767350d8fdb81f5042ce150fef) Print currently running version at startup - [`db214c6`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/db214c674b5826e84a465376435e3e2602ce63db) Allow for SDCard based OTA update ### 📊 Changes **9 files changed** (+294 additions, -72 deletions) <details> <summary>View changed files</summary> 📝 `ESP32_AP-Flasher/data/www/index.html` (+1 -0) 📝 `ESP32_AP-Flasher/data/www/main.js` (+12 -0) 📝 `ESP32_AP-Flasher/include/ota.h` (+2 -1) 📝 `ESP32_AP-Flasher/include/storage.h` (+9 -1) 📝 `ESP32_AP-Flasher/src/main.cpp` (+28 -0) 📝 `ESP32_AP-Flasher/src/ota.cpp` (+73 -52) 📝 `ESP32_AP-Flasher/src/serialap.cpp` (+1 -1) 📝 `ESP32_AP-Flasher/src/storage.cpp` (+164 -17) 📝 `ESP32_AP-Flasher/src/web.cpp` (+4 -0) </details> ### 📄 Description db214c6 (HEAD -> sdio, mimoja/sdio) Allow for SDCard based OTA update 7ea0321 Print currently running version at startup 815e559 Add SDIO interface as second sdcard interface to save on pins 88c5ee7 Report SDCard status to frontend --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
sascha_hemi added the pull-request label 2026-03-20 19:08:48 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/OpenEPaperLink#1511