Bindings: Python: Add FlexRay

Only RX at this time.
This commit is contained in:
Jonathan Schwartz
2025-04-08 20:47:51 +00:00
committed by Kyle Schwarz
parent 830fe1af59
commit f743f32e63
3 changed files with 60 additions and 0 deletions
+2
View File
@@ -28,6 +28,7 @@ void init_device(pybind11::module_&);
void init_messagefilter(pybind11::module_&);
void init_messagecallback(pybind11::module_&);
void init_version(pybind11::module_&);
void init_flexraymessage(pybind11::module_& m);
PYBIND11_MODULE(icsneopy, m) {
pybind11::options options;
@@ -56,6 +57,7 @@ PYBIND11_MODULE(icsneopy, m) {
init_messagecallback(m);
init_diskdriver(m);
init_device(m);
init_flexraymessage(m);
m.def("find_all_devices", &FindAllDevices);
m.def("get_supported_devices", &GetSupportedDevices);