The C++ bindings are missing the functionality provided by the core C
library's gpiod_line_update(). Extend the line class with the update()
method that allows to re-read the line information from the kernel.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
*/
GPIOD_API const chip& get_chip(void) const;
+ /**
+ * @brief Re-read the line info from the kernel.
+ */
+ GPIOD_API void update(void) const;
+
/**
* @brief Reset the state of this object.
*
return this->_m_chip;
}
+void line::update(void) const
+{
+ this->throw_if_null();
+
+ int ret = ::gpiod_line_update(this->_m_line);
+
+ if (ret < 0)
+ throw ::std::system_error(errno, ::std::system_category(),
+ "unable to update the line info");
+}
+
void line::reset(void)
{
this->_m_line = nullptr;
REQUIRE(line.is_open_drain());
REQUIRE_FALSE(line.is_open_source());
}
+
+ SECTION("update line info")
+ {
+ REQUIRE_NOTHROW(line.update());
+ }
}
TEST_CASE("Line bulk object works correctly", "[line][bulk]")