Home
last modified time | relevance | path

Searched refs:SetPinPull (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/drivers/hdf_core/framework/support/platform/include/pin/
H A Dpin_core.h46 int32_t (*SetPinPull)(struct PinCntlr *cntlr, uint32_t index, enum PinPullType pullType); member
/ohos5.0/docs/zh-cn/device-dev/driver/
H A Ddriver-platform-pin-develop.md57 int32_t (*SetPinPull)(struct PinCntlr *cntlr, uint32_t index, enum PinPullType pullType);
70 | SetPinPull | cntlr:结构体指针,核心层PIN控制器<br>index:uint32_t类型变量,管脚索引号<br/>pullType:枚举常量,PIN管脚推拉方式 | 无 |H…
331 .SetPinPull = Hi35xxPinSetPull, // 设置推拉方式
/ohos5.0/drivers/hdf_core/framework/support/platform/src/pin/
H A Dpin_core.c213 if (cntlr->method == NULL || cntlr->method->SetPinPull == NULL) { in PinCntlrSetPinPull()
230 ret = cntlr->method->SetPinPull(cntlr, index, pullType); in PinCntlrSetPinPull()
/ohos5.0/docs/en/device-dev/driver/
H A Ddriver-platform-pin-develop.md55 int32_t (*SetPinPull)(struct PinCntlr *cntlr, uint32_t index, enum PinPullType pullType);
68 | SetPinPull | **cntlr**: structure pointer to the pin controller at the core layer.<br>**index**: …
312 .SetPinPull = Hi35xxPinSetPull, // Set the pull type.
/ohos5.0/drivers/hdf_core/framework/test/unittest/platform/virtual/
H A Dpin_virtual.c165 .SetPinPull = VirtualPinSetPull,