diff --git a/index.html b/index.html index ed4d58a..459ccf7 100644 --- a/index.html +++ b/index.html @@ -107,7 +107,7 @@
-
+
Classic Firmware Download : {{ recommendedFirmwareFilename }} 
@@ -123,6 +123,14 @@ MicroReticulum Firmware Information : {{ FirmwareRepoMicroReticulum }}
+
+ Custom Firmware Download + : {{ recommendedFirmwareFilenameCustom }}  +
+
+ Custom Firmware Information + : {{ FirmwareRepoCustom }} +
Hardware Information : {{ HardwareInfo }} @@ -1163,6 +1171,21 @@ }, }, }, + { + id: ROM.MODEL_FE, + name: "Meshtastic Firmware", + firmware_filename_custom: "meshtastic/latest/meshtastic_firmware_meshadventurer-s3.zip", + firmware_repo_custom: "https://git.rns.moscow/deuxyeux/meshtastic_firmware", + hardware_info: "https://git.rns.moscow/deuxyeux/MeshAdventurer-S3", + flash_config: { + flash_size: "16MB", + flash_files: { + "0x0000": "bootloader.bin", + "0x8000": "partitions.bin", + "0x10000": "firmware.bin", + }, + }, + }, ], }, { @@ -1214,22 +1237,36 @@ models: [ { id: ROM.MODEL_FE, - name: "470-510 MHz", + name: "433 MHz", + firmware_filename_classic: "rnode_firmware_aethernode.zip", + firmware_repo_classic: "https://git.rns.moscow/deuxyeux/RNode_Firmware", + hardware_info: "https://github.com/ahedproductions/aethernode", + flash_config: { + flash_size: "4MB", + flash_files: { + "0xe000": "rnode_firmware_aethernode.boot_app0", + "0x1000": "rnode_firmware_aethernode.bootloader", + "0x10000": "rnode_firmware_aethernode.bin", + "0x8000": "rnode_firmware_aethernode.partitions", + "0x210000": "console_image.bin", + }, + }, + }, + { + id: ROM.MODEL_FE, + name: "Meshtastic Firmware", + firmware_filename_custom: "meshtastic/latest/meshtastic_firmware_aethernode.zip", + hardware_info: "https://github.com/ahedproductions/aethernode", + flash_config: { + flash_size: "4MB", + flash_files: { + "0x1000": "bootloader.bin", + "0x8000": "partitions.bin", + "0x10000": "firmware.bin", + }, + }, }, ], - firmware_filename_classic: "rnode_firmware_aethernode.zip", - firmware_repo_classic: "https://git.rns.moscow/deuxyeux/RNode_Firmware", - hardware_info: "https://github.com/ahedproductions/aethernode", - flash_config: { - flash_size: "4MB", - flash_files: { - "0xe000": "rnode_firmware_aethernode.boot_app0", - "0x1000": "rnode_firmware_aethernode.bootloader", - "0x10000": "rnode_firmware_aethernode.bin", - "0x210000": "console_image.bin", - "0x8000": "rnode_firmware_aethernode.partitions", - }, - }, }, { name: "DIY-V1", @@ -2737,6 +2774,9 @@ recommendedFirmwareFilenameMicroReticulum() { return this.selectedModel?.firmware_filename_microreticulum ?? this.selectedProduct?.firmware_filename_microreticulum; }, + recommendedFirmwareFilenameCustom() { + return this.selectedModel?.firmware_filename_custom ?? this.selectedProduct?.firmware_filename_custom; + }, recommendedFirmwareFilenameRTNode() { return this.selectedModel?.firmware_filename_rtnode ?? this.selectedProduct?.firmware_filename_rtnode; }, @@ -2746,6 +2786,9 @@ FirmwareRepoMicroReticulum() { return this.selectedModel?.firmware_repo_microreticulum ?? this.selectedProduct?.firmware_repo_microreticulum; }, + FirmwareRepoCustom() { + return this.selectedModel?.firmware_repo_custom ?? this.selectedProduct?.firmware_repo_custom; + }, HardwareInfo() { return this.selectedModel?.hardware_info ?? this.selectedProduct?.hardware_info; },