2012-11-18 12:16:07 -04:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
2015-05-29 23:12:49 -03:00
|
|
|
#include "Copter.h"
|
|
|
|
|
|
|
|
|
2013-08-29 00:14:07 -03:00
|
|
|
// updates the status of notify
|
|
|
|
// should be called at 50hz
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::update_notify()
|
2013-08-09 00:18:01 -03:00
|
|
|
{
|
2013-08-29 00:14:07 -03:00
|
|
|
notify.update();
|
2013-08-09 00:18:01 -03:00
|
|
|
}
|
|
|
|
|