mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
11 lines
131 B
C++
11 lines
131 B
C++
#include "Sub.h"
|
|
|
|
|
|
// updates the status of notify
|
|
// should be called at 50hz
|
|
void Sub::update_notify()
|
|
{
|
|
notify.update();
|
|
}
|
|
|