@@ -111,30 +111,30 @@ bool heart_rate_send_hr_16bits(uint16_t meas_hr);
111
111
* @param expended_energy Measured expended energy.
112
112
* @return : True when the ACI command is successfully placed in the ACI command queue
113
113
*/
114
- bool heart_rate_send_hr_expended_energy (uint8_t meas_hr , uint16_t expended_energy , bool is_freshest_sample );
114
+ bool heart_rate_send_hr_expended_energy (uint8_t meas_hr , uint16_t expended_energy );
115
115
116
116
/** @brief Function to send a heart rate measurement (16 bits) with expended energy.
117
117
* @param meas_hr Measured heart_rate to send.
118
118
* @param expended_energy Measured expended energy.
119
119
* @return : True when the ACI command is successfully placed in the ACI command queue
120
120
*/
121
- bool heart_rate_send_hr_16bits_expended_energy (uint16_t meas_hr , uint16_t expended_energy , bool is_freshest_sample );
121
+ bool heart_rate_send_hr_16bits_expended_energy (uint16_t meas_hr , uint16_t expended_energy );
122
122
123
123
/** @brief Function to send a heart rate measurement (8 bits) with rr_intervals
124
124
* @param meas_hr Measured heart_rate to send.
125
125
* @param p_rr_intervals Pointer to rr_intervals values.
126
126
* @param nb_intervals Number of rr_intervals.
127
127
* @return : True when the ACI command is successfully placed in the ACI command queue
128
128
*/
129
- bool heart_rate_send_hr_rr_interval (uint8_t meas_hr , uint16_t * p_rr_intervals , uint8_t nb_intervals , bool is_freshest_sample );
129
+ bool heart_rate_send_hr_rr_interval (uint8_t meas_hr , uint16_t * p_rr_intervals , uint8_t nb_intervals );
130
130
131
131
/** @brief Function to send a heart rate measurement (16 bits) with rr_intervals
132
132
* @param meas_hr Measured heart_rate to send.
133
133
* @param p_rr_intervals Pointer to rr_intervals values.
134
134
* @param nb_intervals Number of rr_intervals.
135
135
* @return : True when the ACI command is successfully placed in the ACI command queue
136
136
*/
137
- bool heart_rate_send_hr_16bits_rr_interval (uint16_t meas_hr , uint16_t * p_rr_intervals , uint8_t nb_intervals , bool is_freshest_sample );
137
+ bool heart_rate_send_hr_16bits_rr_interval (uint16_t meas_hr , uint16_t * p_rr_intervals , uint8_t nb_intervals );
138
138
139
139
/** @brief Function to send a heart rate measurement (8 bits) with expended energy with rr_intervals
140
140
* @param meas_hr Measured heart_rate to send.
@@ -143,7 +143,7 @@ bool heart_rate_send_hr_16bits_rr_interval(uint16_t meas_hr, uint16_t *p_rr_inte
143
143
* @param nb_intervals Number of rr_intervals.
144
144
* @return : True when the ACI command is successfully placed in the ACI command queue
145
145
*/
146
- bool heart_rate_send_hr_expended_energy_rr_interval (uint8_t meas_hr , uint16_t expended_energy , uint16_t * p_rr_intervals , uint8_t nb_intervals , bool is_freshest_sample );
146
+ bool heart_rate_send_hr_expended_energy_rr_interval (uint8_t meas_hr , uint16_t expended_energy , uint16_t * p_rr_intervals , uint8_t nb_intervals );
147
147
148
148
/** @brief Function to send a heart rate measurement (16 bits) with expended energy with rr_intervals
149
149
* @param meas_hr measured heart_rate to send.
@@ -152,7 +152,7 @@ bool heart_rate_send_hr_expended_energy_rr_interval(uint8_t meas_hr, uint16_t ex
152
152
* @param nb_intervals Number of rr_intervals.
153
153
* @return : True when the ACI command is successfully placed in the ACI command queue
154
154
*/
155
- bool heart_rate_send_hr_16bits_expended_energy_rr_interval (uint16_t meas_hr , uint16_t expended_energy , uint16_t * p_rr_intervals , uint8_t nb_intervals , bool is_freshest_sample );
155
+ bool heart_rate_send_hr_16bits_expended_energy_rr_interval (uint16_t meas_hr , uint16_t expended_energy , uint16_t * p_rr_intervals , uint8_t nb_intervals );
156
156
157
157
/** @brief Function to check received data
158
158
* @details Call this function each time data is received (on @c ACI_EVT_DATA_RECEIVED on the control point pipe ).
0 commit comments