Minor change : removed the capital letter at the front of some parameters
This commit is contained in:
parent
99263462ad
commit
6936eb2a0e
@ -207,7 +207,7 @@ void watch_face_register_date_time_cb(WatchFace_t * const watchFace, DateTimeCb_
|
||||
watchFace->dateTimeCb = dateTimeCb;
|
||||
}
|
||||
|
||||
void watch_face_register_battery_indicator_cb(WatchFace_t *const watchFace, BatteryIndicatorCb_t BatteryIndicatorCb)
|
||||
void watch_face_register_battery_indicator_cb(WatchFace_t *const watchFace, BatteryIndicatorCb_t batteryIndicatorCb)
|
||||
{
|
||||
if(!watchFace)
|
||||
{
|
||||
@ -215,7 +215,7 @@ void watch_face_register_battery_indicator_cb(WatchFace_t *const watchFace, Batt
|
||||
return;
|
||||
}
|
||||
|
||||
watchFace->batteryIndicatorCb = BatteryIndicatorCb;
|
||||
watchFace->batteryIndicatorCb = batteryIndicatorCb;
|
||||
}
|
||||
|
||||
void watch_face_register_step_counter_indicator_cb(WatchFace_t * const watchFace, StepCounterIndicatorCb_t stepCounterIndicatorCb)
|
||||
|
@ -87,7 +87,7 @@ void watch_face_init(WatchFace_t * const watchFace);
|
||||
* @param watchFace a pointer to the watch face context structure.
|
||||
* @param DateTimeCb a pointer to a function having the right definition.
|
||||
*/
|
||||
void watch_face_register_date_time_cb(WatchFace_t * const watchFace, DateTimeCb_t DateTimeCb);
|
||||
void watch_face_register_date_time_cb(WatchFace_t * const watchFace, DateTimeCb_t dateTimeCb);
|
||||
|
||||
/**
|
||||
* @brief Registers a call back function used to refresh the battery indicator.
|
||||
@ -96,7 +96,7 @@ void watch_face_register_date_time_cb(WatchFace_t * const watchFace, DateTimeCb_
|
||||
* @param watchFace a pointer to the watch face context structure.
|
||||
* @param BatteryIndicatorCb a pointer to a function having the right definition.
|
||||
*/
|
||||
void watch_face_register_battery_indicator_cb(WatchFace_t * const watchFace, BatteryIndicatorCb_t BatteryIndicatorCb);
|
||||
void watch_face_register_battery_indicator_cb(WatchFace_t * const watchFace, BatteryIndicatorCb_t batteryIndicatorCb);
|
||||
|
||||
/**
|
||||
* @brief Registers a call back function used to refresh the step counter indicator located on the watch face.
|
||||
|
Loading…
Reference in New Issue
Block a user