Esempio n. 1
0
void
devTick(const NMEA_INFO &basic, const DERIVED_INFO &calculated)
{
  int i;

  for (i = 0; i < NUMDEV; i++) {
    DeviceDescriptor *d = &DeviceList[i];
    d->OnSysTicker(basic, calculated);
  }
}
Esempio n. 2
0
void
devTick(const DerivedInfo &calculated)
{
  int i;

  for (i = 0; i < NUMDEV; i++) {
    DeviceDescriptor *d = &DeviceList[i];
    d->OnSysTicker(calculated);
  }
}