2013-05-17 00:19:07 -03:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
#ifdef USERHOOK_INIT
|
2011-10-15 19:29:33 -03:00
|
|
|
void userhook_init()
|
|
|
|
{
|
2012-08-16 21:50:03 -03:00
|
|
|
// put your initialisation code here
|
2013-05-17 00:19:07 -03:00
|
|
|
// this will be called once at start-up
|
|
|
|
}
|
|
|
|
#endif
|
2011-10-15 19:29:33 -03:00
|
|
|
|
2013-05-17 00:19:07 -03:00
|
|
|
#ifdef USERHOOK_FASTLOOP
|
|
|
|
void userhook_FastLoop()
|
|
|
|
{
|
|
|
|
// put your 100Hz code here
|
2011-10-15 19:29:33 -03:00
|
|
|
}
|
2013-05-17 00:19:07 -03:00
|
|
|
#endif
|
2011-10-15 19:29:33 -03:00
|
|
|
|
2013-05-17 00:19:07 -03:00
|
|
|
#ifdef USERHOOK_50HZLOOP
|
2011-10-15 19:29:33 -03:00
|
|
|
void userhook_50Hz()
|
|
|
|
{
|
2012-08-16 21:50:03 -03:00
|
|
|
// put your 50Hz code here
|
2013-05-17 00:19:07 -03:00
|
|
|
}
|
|
|
|
#endif
|
2011-10-15 19:29:33 -03:00
|
|
|
|
2013-05-17 00:19:07 -03:00
|
|
|
#ifdef USERHOOK_MEDIUMLOOP
|
|
|
|
void userhook_MediumLoop()
|
|
|
|
{
|
|
|
|
// put your 10Hz code here
|
|
|
|
}
|
|
|
|
#endif
|
2011-10-15 19:29:33 -03:00
|
|
|
|
2013-05-17 00:19:07 -03:00
|
|
|
#ifdef USERHOOK_SLOWLOOP
|
|
|
|
void userhook_SlowLoop()
|
|
|
|
{
|
|
|
|
// put your 3.3Hz code here
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USERHOOK_SUPERSLOWLOOP
|
|
|
|
void userhook_SuperSlowLoop()
|
|
|
|
{
|
|
|
|
// put your 1Hz code here
|
2011-10-15 19:29:33 -03:00
|
|
|
}
|
2013-05-17 00:19:07 -03:00
|
|
|
#endif
|