Skip to content

Commit

Permalink
SRV_Channels: Add update function for IQ Modules
Browse files Browse the repository at this point in the history
Added a call to iq_ptr->update() in SRV_Channels.cpp's push function to ensure that IQ Modules are sent commands
  • Loading branch information
vertiq-jordan committed Nov 13, 2023
1 parent 0fb7b05 commit 1a6c0ca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libraries/SRV_Channel/SRV_Channels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,10 @@ void SRV_Channels::push()
fetteconwire_ptr->update();
#endif

#if AP_IQUART_ENABLED
iq_ptr->update();
#endif

#if AP_KDECAN_ENABLED
if (AP::kdecan() != nullptr) {
AP::kdecan()->update();
Expand Down

0 comments on commit 1a6c0ca

Please sign in to comment.