Bindings: Python: Add Main51MessageFilter support

This commit is contained in:
Thomas Stoddard
2026-09-21 13:39:27 -04:00
committed by Kyle Schwarz
parent bb892bfd9b
commit 8cd907250d
6 changed files with 120 additions and 0 deletions
+6
View File
@@ -32,7 +32,10 @@ void init_deviceextension(pybind11::module_&);
void init_chipid(pybind11::module_&);
void init_versionreport(pybind11::module_&);
void init_device(pybind11::module_&);
void init_command(pybind11::module_&);
void init_main51message(pybind11::module_&);
void init_messagefilter(pybind11::module_&);
void init_main51messagefilter(pybind11::module_&);
void init_messagecallback(pybind11::module_&);
void init_version(pybind11::module_&);
void init_flexray(pybind11::module_& m);
@@ -69,7 +72,10 @@ PYBIND11_MODULE(icsneopy, m) {
init_scriptstatusmessage(m);
init_spimessage(m);
init_livedatamessage(m);
init_command(m);
init_main51message(m);
init_messagefilter(m);
init_main51messagefilter(m);
init_messagecallback(m);
init_diskdriver(m);
init_diskdetails(m);