diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-02-13 23:29:01 +0000 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-02-13 23:31:56 +0000 |
commit | 90e20942222d7b6142dbdaa05ab7e81bc0f79904 (patch) | |
tree | 9c86470ba813e504a4e6de840ddce00bac65ca03 /timer.h | |
parent | 2fc26a117842428f4148621361c53082ac93722f (diff) |
Added needed functions for basics decode needs.
Change-Id: Ic6202927058ff693c7c5c9b04e25b7be2fba340c
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
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; |