Lines Matching refs:structure
56 | setConfig | **pwm**: structure pointer to the PWM controller at the core layer.<br>**config**: st…
57 | open | **pwm**: structure pointer to the PWM controller at the core layer.| HDF_STATUS| Opens a P…
58 | close | **pwm**: structure pointer to the PWM controller at the core layer.| HDF_STATUS| Closes a…
164 …Initialize the **PwmDev** object at the core layer, including defining a custom structure (to pass…
166 - Define a custom structure.
168 …structure holds parameters and data. The **DeviceResourceIface** method provided by the HDF reads …
174 struct HiPwmRegs *reg; // Device attribute structure, which can be customized.
178 …struct PwmDev { // PwmDev is the core layer controller structure. The Bind f…
181 …struct PwmConfig cfg; // Device attribute structure. For details, see the following de…
205 - Instantiate the **PwmMethod** structure in **PwmDev**.
234 …Initializes the custom structure object and **PwmDev** members, and calls **PwmDeviceAdd()** to ad…
261 …face = DeviceResourceGetIfaceInstance(HDF_CONFIG_SOURCE); // Initialize the custom structure HiPwm.
264 …p->reg = (struct HiPwmRegs *)hp->base; // Initialize the custom structure HiPwm.
265 …p->supportPolarity = false; // Initialize the custom structure HiPwm.
293 …ller. This function assigns values to **Release()** in the driver entry structure. If the HDF fail…