mirror of
https://github.com/wled/WLED.git
synced 2026-04-14 03:04:25 +00:00
Compare commits
11 Commits
v16.0.0-be
...
8MB_partit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
38c266d33c | ||
|
|
c8ce317244 | ||
|
|
a5f28d0fcb | ||
|
|
fb8f8f0b08 | ||
|
|
53fdf9a89c | ||
|
|
a1316034c1 | ||
|
|
75df4affa8 | ||
|
|
820c841376 | ||
|
|
34d50710b3 | ||
|
|
d0d62d9493 | ||
|
|
89b2bc2992 |
14
.github/copilot-instructions.md
vendored
14
.github/copilot-instructions.md
vendored
@@ -78,6 +78,18 @@ After making changes to web UI, always test:
|
||||
|
||||
## Common Tasks
|
||||
|
||||
### Project Branch / Release Structure
|
||||
```
|
||||
main # Main development trunk (daily/nightly) 17.0.0-dev
|
||||
├── V5 # special branch: code rework for esp-idf 5.5.x (unstable)
|
||||
├── V5-C6 # special branch: integration of new MCU types: esp32-c5, esp32-c6, esp32-p4 (unstable)
|
||||
16_x # current beta, preparations for next release 16.0.0
|
||||
0_15_x # maintainance (bugfixes only) for current release 0.15.4
|
||||
(tag) v0.14.4 # previous version 0.14.4 (no maintainance)
|
||||
(tag) v0.13.3 # old version 0.13.3 (no maintainance)
|
||||
(tag) v0. ... . ... # historical versions 0.12.x and before
|
||||
```
|
||||
|
||||
### Repository Structure
|
||||
```
|
||||
wled00/ # Main firmware source (C++)
|
||||
@@ -156,7 +168,7 @@ package.json # Node.js dependencies and scripts
|
||||
- **Test web interface manually after any web UI changes**
|
||||
- When reviewing a PR: the PR author does not need to update/commit generated html_*.h files - these files will be auto-generated when building the firmware binary.
|
||||
- **If you are not sure about something, just answer that you are not sure.** Gather more information instead of continuing with a wild guess.
|
||||
- If asked for an analysis, assessment or web research, **always provide references** to justify your conclusions.
|
||||
- If asked for an analysis, assessment or web research, **provide relevant references** to justify your conclusions. Ensure your recommendations are based on the correct source code branch or PR.
|
||||
- If updating Web UI files in `wled00/data/`, make use of common functions availeable in `wled00/data/common.js` where possible.
|
||||
- **Use VS Code with PlatformIO extension for best development experience**
|
||||
- **Hardware builds require appropriate ESP32/ESP8266 development board**
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "wled",
|
||||
"version": "16.0.0-alpha",
|
||||
"version": "17.0.0-dev",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "wled",
|
||||
"version": "16.0.0-alpha",
|
||||
"version": "17.0.0-dev",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"clean-css": "^5.3.3",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "wled",
|
||||
"version": "16.0.0-alpha",
|
||||
"version": "17.0.0-dev",
|
||||
"description": "Tools for WLED project",
|
||||
"main": "tools/cdata.js",
|
||||
"directories": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Name, Type, SubType, Offset, Size, Flags
|
||||
nvs, data, nvs, 0x9000, 0x5000,
|
||||
otadata, data, ota, 0xe000, 0x2000,
|
||||
app0, app, ota_0, 0x10000, 0x200000,
|
||||
app1, app, ota_1, 0x210000,0x200000,
|
||||
spiffs, data, spiffs, 0x410000,0x3E0000,
|
||||
app0, app, ota_0, 0x10000, 0x220000,
|
||||
app1, app, ota_1, 0x230000,0x220000,
|
||||
spiffs, data, spiffs, 0x450000,0x3A0000,
|
||||
coredump, data, coredump,,64K
|
||||
|
||||
|
9
tools/WLED_zigbee_8MB.csv
Normal file
9
tools/WLED_zigbee_8MB.csv
Normal file
@@ -0,0 +1,9 @@
|
||||
# Name, Type, SubType, Offset, Size, Flags
|
||||
nvs, data, nvs, 0x9000, 0x5000,
|
||||
otadata, data, ota, 0xe000, 0x2000,
|
||||
app0, app, ota_0, 0x10000, 0x270000,
|
||||
app1, app, ota_1, 0x280000,0x270000,
|
||||
spiffs, data, spiffs, 0x4F0000,0x2FB000,
|
||||
zb_storage, data, fat, 0x7EB000,0x4000,
|
||||
zb_fct, data, fat, 0x7EF000,0x1000,
|
||||
coredump, data, coredump,0x7F0000,0x10000,
|
||||
|
@@ -6,7 +6,7 @@
|
||||
|
||||
#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
|
||||
#include <ESP32-VirtualMatrixPanel-I2S-DMA.h>
|
||||
#include <FastLED.h>
|
||||
#include "src/dependencies/fastled_slim/fastled_slim.h"
|
||||
|
||||
#endif
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user