mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
13 lines
210 B
C++
13 lines
210 B
C++
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
#include "Sub.h"
|
|
|
|
|
|
// updates the status of notify
|
|
// should be called at 50hz
|
|
void Sub::update_notify()
|
|
{
|
|
notify.update();
|
|
}
|
|
|