@@ -164,7 +164,6 @@ typedef struct
164
164
uint8_t flags ;
165
165
uint8_t rx_error ;
166
166
uint8_t num_modes ;
167
- uint8_t is_unreported ;
168
167
uint8_t is_mode_busy ;
169
168
uint8_t is_motor_busy ;
170
169
uint8_t num_combi_modes ;
@@ -321,7 +320,6 @@ Device_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
321
320
self -> saved_current_mode = 0 ;
322
321
self -> flags = 0 ;
323
322
self -> rx_error = 0 ;
324
- self -> is_unreported = 0 ;
325
323
self -> is_mode_busy = 0 ;
326
324
self -> is_motor_busy = 0 ;
327
325
self -> num_combi_modes = 0 ;
@@ -418,7 +416,6 @@ static int set_simple_mode(DeviceObject *device, int mode)
418
416
old_list = device -> values ;
419
417
device -> values = new_list ;
420
418
Py_XDECREF (old_list );
421
- device -> is_unreported = 0 ;
422
419
}
423
420
return 0 ;
424
421
}
@@ -456,7 +453,6 @@ static int set_combi_mode(DeviceObject *device,
456
453
old_list = device -> values ;
457
454
device -> values = new_list ;
458
455
Py_XDECREF (old_list );
459
- device -> is_unreported = 0 ;
460
456
}
461
457
462
458
return 0 ;
@@ -973,11 +969,8 @@ Device_get(PyObject *self, PyObject *args)
973
969
974
970
if (device_ensure_mode_info (self ) < 0 )
975
971
return NULL ;
976
- if (!device -> is_unreported )
977
- {
978
- if (get_value (device ) < 0 )
979
- return NULL ;
980
- }
972
+ if (get_value (device ) < 0 )
973
+ return NULL ;
981
974
982
975
/* "format" now contains the format code to use: Raw (0), Pct (1) or
983
976
* SI (2).
@@ -1037,7 +1030,6 @@ Device_get(PyObject *self, PyObject *args)
1037
1030
}
1038
1031
}
1039
1032
1040
- device -> is_unreported = 0 ;
1041
1033
return results ;
1042
1034
}
1043
1035
@@ -1411,7 +1403,6 @@ int device_new_value(PyObject *self, uint8_t *buffer, uint16_t nbytes)
1411
1403
PyObject * old_values = device -> values ;
1412
1404
device -> values = values ;
1413
1405
Py_XDECREF (old_values );
1414
- device -> is_unreported = 1 ;
1415
1406
1416
1407
return bytes_consumed ;
1417
1408
}
@@ -1491,7 +1482,6 @@ int device_new_combi_value(PyObject *self,
1491
1482
PyObject * old_values = device -> values ;
1492
1483
device -> values = values ;
1493
1484
Py_XDECREF (old_values );
1494
- device -> is_unreported = 1 ;
1495
1485
1496
1486
return bytes_consumed ;
1497
1487
}
@@ -1503,8 +1493,7 @@ int device_new_format(PyObject *self)
1503
1493
1504
1494
/* A device is considered busy with its mode inbetween sending
1505
1495
* the Port Input Format message confirming a mode/format change
1506
- * and the next Port Value message. This may supercede the
1507
- * device->is_unreported flag.
1496
+ * and the next Port Value message.
1508
1497
*/
1509
1498
device -> is_mode_busy = 1 ;
1510
1499
return 0 ;
0 commit comments