Lines Matching +full:cycle +full:- +full:timing
4 * SPDX-License-Identifier: Apache-2.0
75 * level and timing
82 * current level and timing
107 * Reserved to demark downstream custom properties - use this value as the actual value may
322 * @brief Callback API enabling or disabling a charge cycle.
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()
382 * @brief Enable or disable a charge cycle
385 * @param enable true enables a charge cycle, false disables a charge cycle
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()