Lines Matching refs:port
75 * @param port Indicates the port number of the PWM device.
79 unsigned int LzPwmInit(unsigned int port);
84 * @param port Indicates the port number of the PWM device.
88 unsigned int LzPwmDeinit(unsigned int port);
91 * @brief Starts PWM signal output from a specified port based on the given output frequency and duty cycle.
95 * @param port Indicates the port number of the PWM device.
101 unsigned int LzPwmStart(unsigned int port, unsigned int duty, unsigned int cycle);
104 * @brief Stops PWM signal output from a specified port.
106 * @param port Indicates the port number of the PWM device.
110 unsigned int LzPwmStop(unsigned int port);
117 * @param port Indicates the port number of the PWM device.
123 unsigned int LzPwmRegisterIsrFunc(unsigned int port, PwmIsrFunc func, void *arg);
128 * @param port Indicates the port number of the PWM device.
132 unsigned int LzPwmUnregisterIsrFunc(unsigned int port);
137 * @param port Indicates the port number of the PWM device.
141 unsigned int LzPwmEnableIsr(unsigned int port);
146 * @param port Indicates the port number of the PWM device.
150 unsigned int LzPwmDisableIsr(unsigned int port);
155 * @param port Indicates the port number of the PWM device.
160 unsigned int LzPwmSetMode(unsigned int port, LzPwmMode mode);