Skip to content

Commit

Permalink
add LilyGO T-Deck
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Oct 29, 2024
1 parent 8fcc0e7 commit f4affec
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
26 changes: 26 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,32 @@
},
},
},
{
name: "LilyGO T-Deck",
id: ROM.PRODUCT_TDECK,
platform: ROM.PLATFORM_ESP32,
models: [
{
id: ROM.MODEL_D4,
name: "433 MHz (with SX1268 chip)",
},
{
id: ROM.MODEL_D9,
name: "868/915/923 MHz (with SX1262 chip)",
},
],
firmware_filename: "rnode_firmware_tdeck.zip",
flash_config: {
flash_size: "4MB",
flash_files: {
"0xe000": "rnode_firmware_tdeck.boot_app0",
"0x0": "rnode_firmware_tdeck.bootloader",
"0x10000": "rnode_firmware_tdeck.bin",
"0x210000": "console_image.bin",
"0x8000": "rnode_firmware_tdeck.partitions",
},
},
},
{
name: "RAK4631",
id: ROM.PRODUCT_RAK4631,
Expand Down
4 changes: 4 additions & 0 deletions js/rnode.js
Original file line number Diff line number Diff line change
Expand Up @@ -756,6 +756,10 @@ class ROM {
static MODEL_DB = 0xDB
static MODEL_DC = 0xDC

static PRODUCT_TDECK = 0xD0;
static MODEL_D4 = 0xD4;
static MODEL_D9 = 0xD9;

static PRODUCT_HMBRW = 0xF0
static MODEL_FF = 0xFF
static MODEL_FE = 0xFE
Expand Down

0 comments on commit f4affec

Please sign in to comment.