Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
aul12 committed Dec 28, 2022
1 parent 4d32ebc commit 8fe5754
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Src/Application/mode_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ mode_handler_mode_t mode_handler_handle(imu_data_t *imu_data, remote_data_t *rem
if (remote_timeout_counter >= REMOTE_TIMEOUT) {
remote_timeout_counter = REMOTE_TIMEOUT;
remote_active = false;
//error_handler_handle_warning(MODE_HANDLER, MODE_HANDLER_ERROR_NO_REMOTE_DATA);
// error_handler_handle_warning(MODE_HANDLER, MODE_HANDLER_ERROR_NO_REMOTE_DATA);
}
*remote_data = remote_get_data();

Expand All @@ -59,7 +59,7 @@ mode_handler_mode_t mode_handler_handle(imu_data_t *imu_data, remote_data_t *rem
if (flightcomputer_timeout_counter >= FLIGHTCOMPUTER_TIMOUT) {
flightcomputer_timeout_counter = FLIGHTCOMPUTER_TIMOUT;
flightcomputer_active = false;
//error_handler_handle_warning(MODE_HANDLER, MODE_HANDLER_ERROR_NO_FCP_DATA);
// error_handler_handle_warning(MODE_HANDLER, MODE_HANDLER_ERROR_NO_FCP_DATA);
}
*flightcomputer_setpoint = flightcomputer_get_setpoint();

Expand Down

0 comments on commit 8fe5754

Please sign in to comment.