OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pll_word
(Results
1 - 2
of
2
) sorted by relevancy
/src/sys/dev/i2c/
tea5767.c
206
uint16_t
pll_word
= 0;
local in function:tea5767_freq_to_pll
209
pll_word
= 4 * (tune.freq - 225) * 1000 / 50000;
211
pll_word
= 4 * (tune.freq - 225) * 1000 / 32768;
215
pll_word
= 4 * (tune.freq - 225) * 1000 / 50000;
219
buf[1] =
pll_word
& 0xff;
220
buf[0] = (
pll_word
>>8) & 0x3f;
263
int
pll_word
= buf[1] | (buf[0] & 0x3f) << 8;
local in function:tea5767_pll_to_freq
265
tune->freq =
pll_word
* 50 / 4 + 225;
267
tune->freq =
pll_word
* 32768 / 4000 + 225;
269
tune->freq =
pll_word
* 50 / 4 + 225
[
all
...]
tea5767.c
206
uint16_t
pll_word
= 0;
local in function:tea5767_freq_to_pll
209
pll_word
= 4 * (tune.freq - 225) * 1000 / 50000;
211
pll_word
= 4 * (tune.freq - 225) * 1000 / 32768;
215
pll_word
= 4 * (tune.freq - 225) * 1000 / 50000;
219
buf[1] =
pll_word
& 0xff;
220
buf[0] = (
pll_word
>>8) & 0x3f;
263
int
pll_word
= buf[1] | (buf[0] & 0x3f) << 8;
local in function:tea5767_pll_to_freq
265
tune->freq =
pll_word
* 50 / 4 + 225;
267
tune->freq =
pll_word
* 32768 / 4000 + 225;
269
tune->freq =
pll_word
* 50 / 4 + 225
[
all
...]
Completed in 305 milliseconds
Indexes created Mon Sep 29 21:09:56 GMT 2025