OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:odrMode
(Results
1 - 3
of
3
) sorted by null
/device/google/contexthub/firmware/os/inc/
gpio.h
72
void gpioConfigOutput(const struct Gpio* __restrict gpio, int32_t gpioSpeed, enum GpioPullMode pull, enum GpioOpenDrainMode
odrMode
, bool value);
73
void gpioConfigAlt(const struct Gpio* __restrict gpio, int32_t gpioSpeed, enum GpioPullMode pull, enum GpioOpenDrainMode
odrMode
, uint32_t altFunc);
syscallDo.h
244
static inline void eOsGpioConfigOutput(const struct Gpio* __restrict gpio, int32_t gpioSpeed, enum GpioPullMode pull, enum GpioOpenDrainMode
odrMode
, bool value)
246
syscallDo5P(SYSCALL_NO(SYSCALL_DOMAIN_OS, SYSCALL_OS_DRIVERS, SYSCALL_OS_DRV_GPIO, SYSCALL_OS_DRV_GPIO_CFG_OUT), gpio, gpioSpeed, pull,
odrMode
, value);
249
static inline void eOsGpioConfigAlt(const struct Gpio* __restrict gpio, int32_t gpioSpeed, enum GpioPullMode pull, enum GpioOpenDrainMode
odrMode
, uint32_t altFunc)
251
syscallDo5P(SYSCALL_NO(SYSCALL_DOMAIN_OS, SYSCALL_OS_DRIVERS, SYSCALL_OS_DRV_GPIO, SYSCALL_OS_DRV_GPIO_CFG_ALT), gpio, gpioSpeed, pull,
odrMode
, altFunc);
/device/google/contexthub/firmware/os/core/
osApi.c
344
enum GpioOpenDrainMode
odrMode
= va_arg(args, int);
347
gpioConfigOutput(gpio, speed, pullMode,
odrMode
, value);
355
enum GpioOpenDrainMode
odrMode
= va_arg(args, int);
358
gpioConfigAlt(gpio, speed, pullMode,
odrMode
, altFunc);
Completed in 3012 milliseconds