Lines Matching refs:description

11 - Obtaining or releasing a pin description handle 
61 | DevHandle PinGet(const char *pinName) | Obtains a pin description handle.|
62 | void PinPut(DevHandle handle) | Releases the pin description handle…
83 Before performing an operation on a pin, use **PinGet()** to obtain the pin description handle base…
96 | handle | The operation is successful. The pin description handle obtained is returned. …
98 Example: Obtain the pin description handle of P18.
101 DevHandle handle = NULL; // Pin description handle.
123 | handle | Pin description handle. |
156 | handle | Pin description handle. |
188 | handle | Pin description handle. |
220 | handle | Pin description handle. |
254 | handle | Pin description handle. |
286 | handle | Pin description handle. |
308 After the operations on a pin are complete, use **PinPut()** to release the pin description handle.
318 | handle | Pin description handle. |
322 Example: Release a pin description handle.
332 1. Pass in the pin name to obtain the pin description handle.
333 2. Set the pull type of the pin. If the operation fails, release the pin description handle.
334 3. Obtain the pull type of the pin. If the operation fails, release the pin description handle.
335 4. Set the pull strength of the pin. If the operation fails, release the pin description handle.
336 5. Obtain the pin pull strength. If the operation fails, release the pin description handle.
337 5. Set the pin function. If the operation fails, release the pin description handle.
338 6. Obtain the pin function. If the operation fails, release the pin description handle.
339 7. Release the pin description handle if no operation needs to be performed on the pin.
356 /* Obtain the pin description handle. */
402 /* Release the pin description handle. */