OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:led_num
(Results
1 - 4
of
4
) sorted by null
/device/google/contexthub/firmware/os/inc/
leds_gpio.h
29
uint32_t
led_num
;
member in struct:LedsCfg
/device/google/contexthub/firmware/os/drivers/leds/
leds_gpio.c
115
if (lcfg->
led_num
>= mTask.num) {
116
osLog(LOG_INFO, "Wrong led number %"PRIu32"\n", lcfg->
led_num
);
119
mTask.leds[lcfg->
led_num
].val = lcfg->value ? 1 : 0;
120
gpioSet(mTask.leds[lcfg->
led_num
].ledid, mTask.leds[lcfg->
led_num
].val);
122
osLog(LOG_INFO, "Set led[%"PRIu32"]=%"PRIu32"\n", lcfg->
led_num
, lcfg->value);
leds_lp3943.c
224
if (lcfg->
led_num
>= mTask.num) {
225
osLog(LOG_INFO, "Wrong led number %"PRIu32"\n", lcfg->
led_num
);
228
index = lcfg->
led_num
>> 2;
229
lnum = (lcfg->
led_num
& 0x3) << 1;
240
osLog(LOG_INFO, "Set led[%"PRIu32"]=%"PRIu32"\n", lcfg->
led_num
, lcfg->value);
/device/google/contexthub/util/nanoapp_cmd/
nanoapp_cmd.c
93
uint32_t
led_num
;
member in struct:LedsCfg
462
printf(" cfgdata: leds:
led_num
value\n");
521
mLedsCfg.
led_num
= atoi(argv[3]);
Completed in 98 milliseconds