Skip to content

Commit

Permalink
Fix module missing from output (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
curzon01 committed Aug 6, 2024
1 parent 207d195 commit fc4032a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decode-config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2366,7 +2366,7 @@ def match(self, setting_hardware, config_version):
'B', 0x450, (None, '0 <= $ <= 31', ('Wifi', '"EthAddress {}".format($)')) ),
'eth_address_esp32s3': (HARDWARE.ESP32S3,
'B', 0x45E, (None, '0 <= $ <= 31', ('Wifi', '"EthAddress {}".format($)')) ),
'module': (HARDWARE.ESP32 ^ HARDWARE.ESP32S3,
'module_esp32': (HARDWARE.ESP32 ^ HARDWARE.ESP32S3,
'B', 0x474, (None, None, ('Management', '"Module {}".format($+1 & 0xff)')) ),
'module_esp32s3': (HARDWARE.ESP32S3,
'B', 0x45F, (None, None, ('Management', '"Module {}".format($+1 & 0xff)')) ),
Expand Down

0 comments on commit fc4032a

Please sign in to comment.