You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
762 B
47 lines
762 B
9 years ago
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
||
|
|
||
|
#include "Copter.h"
|
||
|
|
||
|
#ifdef USERHOOK_INIT
|
||
|
void Copter::userhook_init()
|
||
|
{
|
||
|
// put your initialisation code here
|
||
|
// this will be called once at start-up
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#ifdef USERHOOK_FASTLOOP
|
||
|
void Copter::userhook_FastLoop()
|
||
|
{
|
||
|
// put your 100Hz code here
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#ifdef USERHOOK_50HZLOOP
|
||
|
void Copter::userhook_50Hz()
|
||
|
{
|
||
|
// put your 50Hz code here
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#ifdef USERHOOK_MEDIUMLOOP
|
||
|
void Copter::userhook_MediumLoop()
|
||
|
{
|
||
|
// put your 10Hz code here
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#ifdef USERHOOK_SLOWLOOP
|
||
|
void Copter::userhook_SlowLoop()
|
||
|
{
|
||
|
// put your 3.3Hz code here
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#ifdef USERHOOK_SUPERSLOWLOOP
|
||
|
void Copter::userhook_SuperSlowLoop()
|
||
|
{
|
||
|
// put your 1Hz code here
|
||
|
}
|
||
|
#endif
|