mirror of
https://github.com/ALLFATHER-BV/wadamesh.git
synced 2026-08-07 04:09:51 +00:00
Every flasher board card now carries a support badge with a hover popover: Heltec V4 + TFT and the T-Deck are 'Fully supported' (the two primary dev boards); ThinkNode M9, RAK Tap V2, Heltec V4-R8, Tanmatsu and the new T-Display P4 are 'Partially supported' — the popover spells out that the core (LoRa mesh communication, chat, phone-app link) works while the rest is still settling. New T-Display P4 card wired to the beta channel (manifest-tdisplay-p4.json), same new-board pattern as the M9/RAK cards. NOTICE: extend the ES8311 attribution to cover the P4's P4Audio.cpp (esp-bsp-derived register sequence, re-based onto Arduino Wire). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
83 lines
3.5 KiB
Plaintext
83 lines
3.5 KiB
Plaintext
wadamesh
|
|
Copyright (c) 2026 Kaj Schittecat and the wadamesh contributors
|
|
|
|
This program is free software: you can redistribute it and/or modify it under
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
Foundation, either version 3 of the License, or (at your option) any later
|
|
version. See the LICENSE file for the full text.
|
|
|
|
================================================================================
|
|
Third-party components and their licenses
|
|
================================================================================
|
|
|
|
wadamesh incorporates and/or depends on the components below. Their own licenses
|
|
are preserved and apply to those portions. MIT and Apache-2.0 are compatible with
|
|
GPL-3.0; the combined work is distributed under GPL-3.0-or-later.
|
|
|
|
MeshCore
|
|
Copyright (c) 2025 Scott Powell / rippleradios.com
|
|
MIT License — https://github.com/meshcore-dev/MeshCore
|
|
wadamesh derives its companion-radio application and core hooks from
|
|
MeshCore. The MeshCore-derived source files retain their MIT license
|
|
notices. The separate MeshCore fork that wadamesh builds against (the
|
|
Wi-Fi/BLE/UI hooks) is published under MIT, not GPL, so those hooks remain
|
|
upstreamable to MeshCore.
|
|
|
|
LVGL
|
|
Copyright (c) LVGL Kft and contributors
|
|
MIT License — https://lvgl.io
|
|
|
|
NimBLE-Arduino
|
|
Copyright (c) h2zero and contributors
|
|
Apache License 2.0 — https://github.com/h2zero/NimBLE-Arduino
|
|
|
|
CayenneLPP
|
|
Copyright (c) Electronic Cats
|
|
MIT License — https://github.com/ElectronicCats/CayenneLPP
|
|
|
|
RadioLib
|
|
Copyright (c) Jan Gromeš
|
|
MIT License — https://github.com/jgromes/RadioLib
|
|
|
|
Noto Color Emoji (emoji glyph artwork, baked to image data)
|
|
Copyright (c) Google, Inc.
|
|
SIL Open Font License 1.1 — https://github.com/googlefonts/noto-emoji
|
|
Used as bundled image data with attribution.
|
|
|
|
ed25519 (bundled in lib/ed25519)
|
|
Orson Peters / orlp — public domain (Creative Commons Zero / zlib)
|
|
https://github.com/orlp/ed25519
|
|
|
|
AsyncElegantOTA (vendored in arch/esp32/AsyncElegantOTA)
|
|
Copyright (c) Ayush Sharma — MIT License
|
|
|
|
TFT_eSPI (T-LoRa Pager display backend)
|
|
Copyright (c) Bodmer — MIT / FreeBSD License — https://github.com/Bodmer/TFT_eSPI
|
|
|
|
Adafruit GFX / ST7735_ST7789 (T-Deck / Heltec V4 display backend)
|
|
Copyright (c) Adafruit Industries — BSD License
|
|
|
|
chsc6x (Heltec V4 CHSC6x cap-touch driver)
|
|
Quency-D — https://github.com/Quency-D/chsc6x
|
|
|
|
SensorLib (T-LoRa Pager XL9555/BQ27220/AW9364 drivers)
|
|
Copyright (c) Lewis He — MIT License — https://github.com/lewisxhe/SensorLib
|
|
|
|
ES8311 register sequence and clock-divider coefficients (T-LoRa Pager audio
|
|
codec driver, variants/lilygo_tlora_pager/Es8311Codec.cpp; T-Display P4 audio
|
|
driver, variants/tdisplay_p4/P4Audio.cpp)
|
|
Copyright (c) 2023-2026 Espressif Systems (Shanghai) CO LTD
|
|
Apache License 2.0 — https://github.com/espressif/esp-adf-libs and
|
|
https://github.com/espressif/esp-bsp (components/es8311)
|
|
wadamesh's drivers are original code (not copies of esp_codec_dev's
|
|
plugin/HAL architecture) but their ES8311 register addresses, startup/
|
|
power sequences, and MCLK clock-divider coefficients are derived from
|
|
Espressif's public es8311.c/es8311_reg.h; P4Audio.cpp additionally
|
|
re-bases the esp-bsp init flow onto Arduino Wire.
|
|
|
|
LovyanGFX (RAK WisMesh Tap V2 display backend)
|
|
Copyright (c) lovyan03 — FreeBSD License — https://github.com/lovyan03/LovyanGFX
|
|
|
|
This list is not exhaustive and is expanded as dependencies are vendored or
|
|
added.
|