2 * Set the {2} for the specified serial port.
4 * @param[in] port Pointer to a port structure. Must not be NULL.
7 * @return SP_OK upon success, a negative error code otherwise.
11 enum sp_return sp_set_{0}(struct sp_port *port, {1} {0});
14 * Get the {2} from a port configuration.
16 * The user should allocate a variable of type {1} and
17 * pass a pointer to this to receive the result.
19 * @param[in] config Pointer to a configuration structure. Must not be NULL.
20 * @param[out] {0}_ptr Pointer to a variable to store the result. Must not be NULL.
22 * @return SP_OK upon success, a negative error code otherwise.
26 enum sp_return sp_get_config_{0}(const struct sp_port_config *config, {1} *{0}_ptr);
29 * Set the {2} in a port configuration.
31 * @param[in] config Pointer to a configuration structure. Must not be NULL.
32 * @param[in] {0} {3}, or -1 to retain the current setting.
34 * @return SP_OK upon success, a negative error code otherwise.
38 enum sp_return sp_set_config_{0}(struct sp_port_config *config, {1} {0});