Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Funhouse web native usb + Min_Spiffs partition changes #147

Merged
merged 13 commits into from
May 7, 2024
Merged
7 changes: 4 additions & 3 deletions boards/feather-esp32/definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,18 @@
"vendor":"Adafruit",
"productURL":"https://www.adafruit.com/product/3405",
"documentationURL":"https://learn.adafruit.com/adafruit-huzzah32-esp32-feather",
"installBoardName": "wippersnapper_feather_esp32",
"installMethod":"web",
"esptool": {
"fileSystemSize": 1441792,
"fileSystemSize": 131072,
"blockSize": 4096,
"offset": "0x290000",
"offset": "0x3D0000",
"chip": "esp32",
"flashMode" : "dio",
"flashFreq" : "80m",
"flashSize" : "4MB",
"structure": {
"0x0": "wippersnapper.feather_esp32.littlefs.VERSION.combined.bin"
"0x0": "wippersnapper.wippersnapper_feather_esp32.littlefs.VERSION.combined.bin"
}
},
"components": {
Expand Down
15 changes: 14 additions & 1 deletion boards/funhouse/definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,20 @@
"vendor":"Adafruit",
"productURL":"https://www.adafruit.com/product/4985",
"documentationURL":"https://learn.adafruit.com/adafruit-funhouse",
"installMethod":"uf2",
"installMethod":"web-native-usb",
"installBoardName": "funhouse_noota",
"esptool": {
"fileSystemSize": 983040,
"blockSize": 4096,
"offset": "0x310000",
"chip": "esp32s2",
"flashMode": "dio",
"flashFreq": "80m",
"flashSize": "4MB",
"structure": {
"0x0": "wippersnapper.funhouse_noota.fatfs.VERSION.combined.bin"
}
},
"components":{
"digitalPins":[
{
Expand Down
Binary file modified boards/funhouse/images/boot-loader.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions boards/qtpy-esp32c3/definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,18 @@
"vendor":"Adafruit",
"productURL":"https://www.adafruit.com/product/5405",
"documentationURL":"https://learn.adafruit.com/adafruit-qt-py-esp32-c3-wifi-dev-board",
"installBoardName": "wippersnapper_qtpy_esp32c3",
"installMethod":"web",
"esptool": {
"fileSystemSize": 1441792,
"fileSystemSize": 131072,
"blockSize": 4096,
"offset": "0x00290000",
"offset": "0x3D0000",
"chip": "esp32c3",
"flashMode" : "dio",
"flashFreq" : "80m",
"flashSize" : "4MB",
"structure": {
"0x0": "wippersnapper.qtpy_esp32c3.littlefs.VERSION.combined.bin"
"0x0": "wippersnapper.wippersnapper_qtpy_esp32c3.littlefs.VERSION.combined.bin"
}
},
"components":{
Expand Down
2 changes: 1 addition & 1 deletion boards/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"installMethod": {
"description": "The WipperSnapper firmware installation method for this board.",
"type": "string",
"pattern": "^(web|uf2|library|python)$"
"pattern": "^(web|uf2|web-native-usb|library|python)$"
},
"installBoardName": {
"description": "(Optional) Name to use instead of `boardName` to look up the firmware asset in the WipperSnapper Arduino Releases",
Expand Down
Loading