DataFlash: add missing FALLTHROUGH declarations
This commit is contained in:
parent
9f1c96bb09
commit
18d7d3f038
@ -59,6 +59,7 @@ void DFMessageWriter_DFLogStart::process()
|
|||||||
_next_unit_to_send++;
|
_next_unit_to_send++;
|
||||||
}
|
}
|
||||||
stage = ls_blockwriter_stage_multipliers;
|
stage = ls_blockwriter_stage_multipliers;
|
||||||
|
FALLTHROUGH;
|
||||||
|
|
||||||
case ls_blockwriter_stage_multipliers:
|
case ls_blockwriter_stage_multipliers:
|
||||||
while (_next_multiplier_to_send < _dataflash_backend->num_multipliers()) {
|
while (_next_multiplier_to_send < _dataflash_backend->num_multipliers()) {
|
||||||
@ -68,6 +69,7 @@ void DFMessageWriter_DFLogStart::process()
|
|||||||
_next_multiplier_to_send++;
|
_next_multiplier_to_send++;
|
||||||
}
|
}
|
||||||
stage = ls_blockwriter_stage_units;
|
stage = ls_blockwriter_stage_units;
|
||||||
|
FALLTHROUGH;
|
||||||
|
|
||||||
case ls_blockwriter_stage_format_units:
|
case ls_blockwriter_stage_format_units:
|
||||||
while (_next_format_unit_to_send < _dataflash_backend->num_types()) {
|
while (_next_format_unit_to_send < _dataflash_backend->num_types()) {
|
||||||
@ -77,6 +79,7 @@ void DFMessageWriter_DFLogStart::process()
|
|||||||
_next_format_unit_to_send++;
|
_next_format_unit_to_send++;
|
||||||
}
|
}
|
||||||
stage = ls_blockwriter_stage_parms;
|
stage = ls_blockwriter_stage_parms;
|
||||||
|
FALLTHROUGH;
|
||||||
|
|
||||||
case ls_blockwriter_stage_parms:
|
case ls_blockwriter_stage_parms:
|
||||||
while (ap) {
|
while (ap) {
|
||||||
|
Loading…
Reference in New Issue
Block a user