Fix neopool filtration speed del

This commit is contained in:
Norbert Richter 2021-10-14 17:27:43 +02:00
parent 7d49b66ef9
commit ef1e3591ca
No known key found for this signature in database
GPG Key ID: 6628701A626FA674
1 changed files with 1 additions and 1 deletions

View File

@ -1854,7 +1854,7 @@ void CmndNeopoolFiltration(void)
if (value[1] >= 1 && value[1] <= 3) {
// Set filtration speed first
NeoPoolWriteRegisterWord(MBF_PAR_FILTRATION_CONF,
(filtration_conf & MBMSK_PAR_FILTRATION_CONF_DEF_SPEED) | ((value[1] - 1) << MBSHFT_PAR_FILTRATION_CONF_DEF_SPEED));
(filtration_conf & ~MBMSK_PAR_FILTRATION_CONF_DEF_SPEED) | ((value[1] - 1) << MBSHFT_PAR_FILTRATION_CONF_DEF_SPEED));
NeoPoolWriteRegisterWord(MBF_EXEC, 1);
} else {
NeopoolCmndError();