diff options
Diffstat (limited to 'timer.h')
-rw-r--r-- | timer.h | 18 |
1 files changed, 6 insertions, 12 deletions
@@ -6,7 +6,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -23,17 +23,11 @@ * * frequency - the clock frequency in Hz. * last_time - the last time (in milliseconds since startup) that the clock - * ticked. + * ticked. * time_function - a function returning current time in ms -typedef struct { - float frequency; - unsigned long lastTick; - TimeFunction timeFunction; -} FrequencyClock; */ - -class FrequencyClock_c { - private: +typedef struct { float frequency; - unsigned long last_tick; -}
\ No newline at end of file + unsigned long lastTick; + TimeFunction timeFunction; +} FrequencyClock; |