Lines Matching +full:conversion +full:- +full:rate
4 * SPDX-License-Identifier: Apache-2.0
107 * Reserved to demark downstream custom properties - use this value as the actual value may
160 * Charging is occurring at the slowest desired charge rate,
164 /** Charging is occurring at the fastest desired charge rate */
166 /** Charging is occurring at a moderate charge rate */
173 * Charging is occurring at a reduced charge rate to preserve
178 * The charger device is being bypassed and the power conversion
187 * These conditions determine the ability to, or the rate of, charge
355 const struct charger_driver_api *api = (const struct charger_driver_api *)dev->api; in z_impl_charger_get_prop()
357 return api->get_property(dev, prop, val); in z_impl_charger_get_prop()
376 const struct charger_driver_api *api = (const struct charger_driver_api *)dev->api; in z_impl_charger_set_prop()
378 return api->set_property(dev, prop, val); in z_impl_charger_set_prop()
388 * @retval -EIO if communication with the charger failed
389 * @retval -EINVAL if the conditions for initiating charging are invalid
395 const struct charger_driver_api *api = (const struct charger_driver_api *)dev->api; in z_impl_charger_charge_enable()
397 return api->charge_enable(dev, enable); in z_impl_charger_charge_enable()