Skip to content

Commit

Permalink
Fix missing AdcParam settings (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
curzon01 committed Oct 1, 2024
1 parent dd978a1 commit dcee6dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion decode-config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1962,9 +1962,13 @@ def match(self, setting_hardware, config_version):
SETTING_8_4_0_0[SETTINGVAR][HARDWARE.hstr(HARDWARE.ESP82)].extend(['SET_MAX'])
SETTING_8_4_0_0[SETTINGVAR][HARDWARE.hstr(HARDWARE.ESP32)].extend(['SET_MAX'])
SETTING_8_4_0_0.update ({
'adc_param': (HARDWARE.ESP32, '699s',(0x017,'SET_ADC_PARAM1'),
'adc_param32': (HARDWARE.ESP32, '699s',(0x017,'SET_ADC_PARAM1'),
([8], None, ('Management', None)) ),
})
SETTING_8_4_0_0.update ({
'adc_param': (HARDWARE.ESP82, '699s',(0x017,'SET_ADC_PARAM1'),
(None, None, ('Management', None)) ),
})
# ======================================================================
SETTING_8_4_0_1 = copy.copy(SETTING_8_4_0_0)
SETTING_8_4_0_1['flag4'][1].update ({
Expand Down

0 comments on commit dcee6dd

Please sign in to comment.