kiss communication: call to erase startup callback

tatry_variant
Mateusz Lubecki 2022-09-12 20:26:29 +02:00
rodzic d7bd382b93
commit 2592930cc6
1 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -177,8 +177,15 @@ int32_t kiss_parse_received(uint8_t* input_frame_from_host, uint16_t input_len,
break;
}
case KISS_ERASE_STARTUP_CFG: {
output = kiss_callback_erase_startup(input_frame_from_host, input_len, response_buffer, resp_buf_ln);
break;
}
default: output = -3;
default: {
output = -3;
}
}
}