예제 #1
0
파일: airspeed.cpp 프로젝트: DrTon/Firmware
void
Airspeed::cycle_trampoline(void *arg)
{
	Airspeed *dev = (Airspeed *)arg;

	dev->cycle();
}
예제 #2
0
void
Airspeed::cycle_trampoline(void *arg)
{
	Airspeed *dev = (Airspeed *)arg;

	dev->cycle();
	// XXX we do not know if this is
	// really helping - do not update the
	// subsys state right now
	//dev->update_status();
}