OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:driftPpm
(Results
1 - 3
of
3
) sorted by null
/device/google/contexthub/firmware/os/core/
timer.c
46
uint32_t
driftPpm
;
135
if (tim->
driftPpm
> maxDrift)
136
maxDrift = tim->
driftPpm
;
137
if (tim->
driftPpm
+ tim->jitterPpm > maxErrTotal)
138
maxErrTotal = tim->
driftPpm
+ tim->jitterPpm;
158
static uint32_t timTimerSetEx(uint64_t length, uint32_t jitterPpm, uint32_t
driftPpm
, TaggedPtr info, void* data, bool oneShot)
180
t->
driftPpm
=
driftPpm
;
195
uint32_t timTimerSet(uint64_t length, uint32_t jitterPpm, uint32_t
driftPpm
, TimTimerCbkF cbk, void* data, bool oneShot)
197
return timTimerSetEx(length, jitterPpm,
driftPpm
, taggedPtrMakeFromPtr(cbk), data, oneShot)
[
all
...]
osApi.c
205
uint32_t
driftPpm
= va_arg(args, uint32_t);
211
*retValP = timTimerSetAsApp(length, jitterPpm,
driftPpm
, 0, cookie, oneshot);
/device/google/contexthub/firmware/os/platform/stm32/
platform.c
496
uint32_t
driftPpm
;
509
.
driftPpm
= 50,
523
.
driftPpm
= 50,
537
.
driftPpm
= 50,
551
.
driftPpm
= 50,
565
.
driftPpm
= 30,
577
.
driftPpm
= 0,
617
if (sleepClock->
driftPpm
> mMaxDriftPpm)
Completed in 98 milliseconds