Home
last modified time | relevance | path

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

/ohos5.0/drivers/hdf_core/framework/support/platform/include/pin/
H A Dpin_core.h47 int32_t (*GetPinPull)(struct PinCntlr *cntlr, uint32_t index, enum PinPullType *pullType); member
/ohos5.0/docs/zh-cn/device-dev/driver/
H A Ddriver-platform-pin-develop.md58 int32_t (*GetPinPull)(struct PinCntlr *cntlr, uint32_t index, enum PinPullType *pullType);
71 | GetPinPull | cntlr:结构体指针,核心层PIN控制器<br/>index:uint32_t类型变量,管脚索引号 | pullType:枚举常量指针,传出获取的PIN管脚推拉方式 …
332 .GetPinPull = Hi35xxPinGetPull, // 获取推拉方式
/ohos5.0/drivers/hdf_core/framework/support/platform/src/pin/
H A Dpin_core.c253 if (cntlr->method == NULL || cntlr->method->GetPinPull == NULL) { in PinCntlrGetPinPull()
275 ret = cntlr->method->GetPinPull(cntlr, index, pullType); in PinCntlrGetPinPull()
/ohos5.0/docs/en/device-dev/driver/
H A Ddriver-platform-pin-develop.md56 int32_t (*GetPinPull)(struct PinCntlr *cntlr, uint32_t index, enum PinPullType *pullType);
69 | GetPinPull | **cntlr**: structure pointer to the pin controller at the core layer.<br>**index**: …
313 .GetPinPull = Hi35xxPinGetPull, // Obtain the pull type.
/ohos5.0/drivers/hdf_core/framework/test/unittest/platform/virtual/
H A Dpin_virtual.c166 .GetPinPull = VirtualPinGetPull,