mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
[fix] add missing control event call (#2795)
event function from control group where not called
This commit is contained in:
committed by
GitHub
parent
eceffb8bd5
commit
5b0b732c1f
@@ -228,6 +228,7 @@ void event_task_ap(void)
|
||||
modules_core_event_task();
|
||||
modules_sensors_event_task();
|
||||
modules_estimation_event_task();
|
||||
modules_control_event_task();
|
||||
modules_datalink_event_task();
|
||||
modules_default_event_task();
|
||||
|
||||
|
||||
@@ -261,6 +261,7 @@ void main_event(void)
|
||||
if (autopilot.use_rc) {
|
||||
RadioControlEvent(autopilot_on_rc_frame);
|
||||
}
|
||||
modules_control_event_task();
|
||||
modules_actuators_event_task();
|
||||
modules_datalink_event_task();
|
||||
modules_default_event_task();
|
||||
|
||||
@@ -204,6 +204,7 @@ void main_event(void)
|
||||
if (autopilot.use_rc) {
|
||||
RadioControlEvent(autopilot_on_rc_frame);
|
||||
}
|
||||
modules_control_event_task();
|
||||
modules_actuators_event_task();
|
||||
modules_datalink_event_task();
|
||||
modules_default_event_task();
|
||||
|
||||
Reference in New Issue
Block a user