Lines Matching +full:level +full:- +full:detect
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
217 /** The charger device does not detect a battery */
225 /** Most severe level, typically triggered instantaneously */
227 /** More severe than the warning level, less severe than peak */
229 /** Base severity level */
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()