Lines Matching refs:PinCntlr
55 int32_t (*SetPinPull)(struct PinCntlr *cntlr, uint32_t index, enum PinPullType pullType);
56 int32_t (*GetPinPull)(struct PinCntlr *cntlr, uint32_t index, enum PinPullType *pullType);
57 int32_t (*SetPinStrength)(struct PinCntlr *cntlr, uint32_t index, uint32_t strength);
58 int32_t (*GetPinStrength)(struct PinCntlr *cntlr, uint32_t index, uint32_t *strength);
59 int32_t (*SetPinFunc)(struct PinCntlr *cntlr, uint32_t index, const char *funcName);
60 int32_t (*GetPinFunc)(struct PinCntlr *cntlr, uint32_t index, const char **funcName);
108 …o the driver implementation and default values or value ranges of the **PinCntlr** members at the …
203 …PinCntlr** object at the core layer, including defining a custom structure (to pass parameters and…
209 Initialize **PinCntlr** in **Hi35xxPinCntlrInit**.
224 struct PinCntlr cntlr // Core layer control object.
233 …// PinCntlr is the controller structure at the core layer. The Init function assigns values to the…
234 struct PinCntlr {
308 - Instantiate the **PinCntlrMethod** structure in **PinCntlr**.
342 …Initializes the custom structure object and **PinCntlr** members, and calls **PinCntlrAdd()** to a…
436 struct PinCntlr *cntlr = NULL;