return ret;
}
+PyDoc_STRVAR(gpiod_Line_update_doc,
+"update() -> None\n"
+"\n"
+"Re-read the line information from the kernel.");
+
+static PyObject *gpiod_Line_update(gpiod_LineObject *self,
+ PyObject *Py_UNUSED(ignored))
+{
+ int ret;
+
+ ret = gpiod_line_update(self->line);
+ if (ret) {
+ PyErr_SetFromErrno(PyExc_OSError);
+ return NULL;
+ }
+
+ Py_RETURN_NONE;
+}
+
PyDoc_STRVAR(gpiod_Line_event_wait_doc,
"event_wait([sec[ ,nsec]]) -> boolean\n"
"\n"
.ml_flags = METH_NOARGS,
.ml_doc = gpiod_Line_release_doc,
},
+ {
+ .ml_name = "update",
+ .ml_meth = (PyCFunction)gpiod_Line_update,
+ .ml_flags = METH_NOARGS,
+ .ml_doc = gpiod_Line_update_doc,
+ },
{
.ml_name = "event_wait",
.ml_meth = (PyCFunction)(void (*)(void))gpiod_Line_event_wait,
self.assertTrue(line.is_open_drain())
self.assertFalse(line.is_open_source())
+ def test_update_line_info(self):
+ with gpiod.Chip(mockup.chip_name(0)) as chip:
+ line = chip.get_line(3)
+ line.update()
+
class LineValues(MockupTestCase):
chip_sizes = ( 8, )