[PR #242] [MERGED] M3 58 26 29 freezer #2123

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

📋 Pull Request Information

Original PR: https://github.com/OpenEPaperLink/OpenEPaperLink/pull/242
Author: @VstudioLAB
Created: 2/26/2024
Status: Merged
Merged: 2/27/2024
Merged by: @jjwbruijn

Base: masterHead: M3_58-26-29FREEZER


📝 Commits (8)

  • b07eeb3 initial commit
  • 5561f82 Original commit (5.85" BWR only)
  • a787ac6 M3 5.85" cleanning
  • bee51a2 5.85" Initial support and general preparation for BW only compatibility.
  • f83667b Added support for the 2.6 BWR
  • 6b67f6d updates
  • 0ffd0fb Update .gitignore
  • e4ed0b1 Delete ARM_Tag_FW/Newton_M3_nRF52811/$PROJECT_DIR directory

📊 Changes

14 files changed (+7455 additions, -6521 deletions)

View changed files

📝 .gitignore (+1 -0)
ARM_Tag_FW/Newton_M3_nRF52811/Newton_M3_Universal-full-flash.bin (+0 -0)
📝 ARM_Tag_FW/Newton_M3_nRF52811/Newton_M3_Universal-full-flash.hex (+6951 -6492)
📝 ARM_Tag_FW/Newton_M3_nRF52811/Newton_M3_Universal-ota.bin (+0 -0)
📝 ARM_Tag_FW/Newton_M3_nRF52811/hal/Newton_M3_nRF52811/HAL_Newton_M3.h (+1 -0)
📝 ARM_Tag_FW/Newton_M3_nRF52811/hal/Newton_M3_nRF52811/tagtype_db.cpp (+61 -3)
📝 ARM_Tag_FW/Newton_M3_nRF52811/platformio.ini (+1 -1)
ARM_Tag_FW/Newton_M3_nRF52811/src/epd_driver/dualssd.cpp (+220 -0)
ARM_Tag_FW/Newton_M3_nRF52811/src/epd_driver/dualssd.h (+23 -0)
📝 ARM_Tag_FW/Newton_M3_nRF52811/src/epd_driver/epd_interface.h (+1 -0)
📝 ARM_Tag_FW/Newton_M3_nRF52811/src/epd_driver/unissd.cpp (+11 -3)
📝 ARM_Tag_FW/Newton_M3_nRF52811/src/userinterface.cpp (+171 -18)
📝 ARM_Tag_FW/common/drawing.cpp (+6 -4)
📝 oepl-definitions.h (+8 -0)

📄 Description

Adding support for the following M3 tags:
5.85" FREEZER, model ELF58H2WMN
5.85", model ELD58H2WRN
2.9", model ELF29H3WMC
2.6", model ELO26H2WRN

fixing minor bug on M3 1.6" lite


🔄 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/242 **Author:** [@VstudioLAB](https://github.com/VstudioLAB) **Created:** 2/26/2024 **Status:** ✅ Merged **Merged:** 2/27/2024 **Merged by:** [@jjwbruijn](https://github.com/jjwbruijn) **Base:** `master` ← **Head:** `M3_58-26-29FREEZER` --- ### 📝 Commits (8) - [`b07eeb3`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/b07eeb31ceafc01e595582b1ddaf89d68b7d8ce2) initial commit - [`5561f82`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/5561f82bf6b4fffc4494be8631859a651503b97c) Original commit (5.85" BWR only) - [`a787ac6`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/a787ac6ddf3b19afc1a927f242fcfe06451a1b81) M3 5.85" cleanning - [`bee51a2`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/bee51a23b6db3e6bb663aa89b1351301e44d8bea) 5.85" Initial support and general preparation for BW only compatibility. - [`f83667b`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/f83667bcce114ec7f50faa6da51b148af09cea8e) Added support for the 2.6 BWR - [`6b67f6d`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/6b67f6df2b1f7c30ea1dd7b0a4b6c5d21522b059) updates - [`0ffd0fb`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/0ffd0fbf0e5dfdcf87a35bde09d6d31b4db06a50) Update .gitignore - [`e4ed0b1`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/e4ed0b13dbdc9291af1747862980d97991644c32) Delete ARM_Tag_FW/Newton_M3_nRF52811/$PROJECT_DIR directory ### 📊 Changes **14 files changed** (+7455 additions, -6521 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) ➖ `ARM_Tag_FW/Newton_M3_nRF52811/Newton_M3_Universal-full-flash.bin` (+0 -0) 📝 `ARM_Tag_FW/Newton_M3_nRF52811/Newton_M3_Universal-full-flash.hex` (+6951 -6492) 📝 `ARM_Tag_FW/Newton_M3_nRF52811/Newton_M3_Universal-ota.bin` (+0 -0) 📝 `ARM_Tag_FW/Newton_M3_nRF52811/hal/Newton_M3_nRF52811/HAL_Newton_M3.h` (+1 -0) 📝 `ARM_Tag_FW/Newton_M3_nRF52811/hal/Newton_M3_nRF52811/tagtype_db.cpp` (+61 -3) 📝 `ARM_Tag_FW/Newton_M3_nRF52811/platformio.ini` (+1 -1) ➕ `ARM_Tag_FW/Newton_M3_nRF52811/src/epd_driver/dualssd.cpp` (+220 -0) ➕ `ARM_Tag_FW/Newton_M3_nRF52811/src/epd_driver/dualssd.h` (+23 -0) 📝 `ARM_Tag_FW/Newton_M3_nRF52811/src/epd_driver/epd_interface.h` (+1 -0) 📝 `ARM_Tag_FW/Newton_M3_nRF52811/src/epd_driver/unissd.cpp` (+11 -3) 📝 `ARM_Tag_FW/Newton_M3_nRF52811/src/userinterface.cpp` (+171 -18) 📝 `ARM_Tag_FW/common/drawing.cpp` (+6 -4) 📝 `oepl-definitions.h` (+8 -0) </details> ### 📄 Description Adding support for the following M3 tags: 5.85" FREEZER, model ELF58H2WMN 5.85", model ELD58H2WRN 2.9", model ELF29H3WMC 2.6", model ELO26H2WRN fixing minor bug on M3 1.6" lite --- <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 20:08:57 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/OpenEPaperLink#2123