We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af3136e commit c9ffe88Copy full SHA for c9ffe88
tests/cli/net_handler_cli.c
@@ -236,7 +236,7 @@ void prompt_device_data() {
236
int num_devices = 0;
237
uint8_t dev_type;
238
long long int temp;
239
- dev_data_t data[MAX_DEVICES];
+ dev_subs_t data[MAX_DEVICES];
240
device_t* curr_dev;
241
242
// first get the list of device names
@@ -330,7 +330,7 @@ void prompt_device_data() {
330
331
// send
332
printf("Sending Device Data message!\n\n");
333
- send_device_data(data, num_devices);
+ send_device_subs(data, num_devices);
334
335
// free everything
336
for (int i = 0; i < num_devices; i++) {
0 commit comments