mcu: Make a minor change to the protocol to require mcu update
Commit9ecddd1bfixed a serious error (introduced in7d95a004). Force a protocol version change so users are aware of the need to update the mcu code. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
@@ -244,8 +244,8 @@ static uint32_t config_crc;
|
||||
void
|
||||
command_get_config(uint32_t *args)
|
||||
{
|
||||
sendf("config is_config=%c crc=%u move_count=%hu is_shutdown=%c"
|
||||
, is_finalized(), config_crc, move_count, sched_is_shutdown());
|
||||
sendf("config is_config=%c crc=%u is_shutdown=%c move_count=%hu"
|
||||
, is_finalized(), config_crc, sched_is_shutdown(), move_count);
|
||||
}
|
||||
DECL_COMMAND_FLAGS(command_get_config, HF_IN_SHUTDOWN, "get_config");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user