Skip to content

Commit eb63924

Browse files
committed
move to use new toolkit function names
1 parent 2870779 commit eb63924

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/sfeTk/sfeDevBMV080.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ int8_t sfeDevBMV080::device_write_16bit_CB(bmv080_sercom_handle_t handle, uint16
9898
//
9999
int8_t sfeDevBMV080::device_delay_CB(uint32_t period)
100100
{
101-
sfeTk_delay_ms(period);
101+
sftk_delay_ms(period);
102102
// delay(period);
103103

104104
return E_COMBRIDGE_OK;
@@ -189,7 +189,7 @@ bool sfeDevBMV080::setMode(uint8_t mode)
189189
{
190190
bmv080_duty_cycling_mode_t duty_cycling_mode = E_BMV080_DUTY_CYCLING_MODE_0;
191191
bmv080_current_status = bmv080_start_duty_cycling_measurement(
192-
_bmv080_handle_class, (bmv080_callback_tick_t)sfeTk_ticks_ms(), duty_cycling_mode);
192+
_bmv080_handle_class, (bmv080_callback_tick_t)sftk_ticks_ms(), duty_cycling_mode);
193193
}
194194

195195
// check if the mode was set correctly
@@ -233,8 +233,8 @@ bool sfeDevBMV080::open()
233233
if (_theBus == nullptr)
234234
return false;
235235

236-
// Open the device - pass in the data read, data write and delay functions callbacks. Note - the "secrom_handle_t"
237-
// is just a pointer to our Tookkit communication bus objects
236+
// Open the device - pass in the data read, data write and delay functions callbacks. Note - the "sercom_handle_t"
237+
// is just a pointer to our Toolkit communication bus objects
238238

239239
bmv080_status_code_t status = bmv080_open(
240240
&_bmv080_handle_class, (bmv080_sercom_handle_t)_theBus, (bmv080_callback_read_t)device_read_16bit_CB,

0 commit comments

Comments
 (0)