]> sigrok.org Git - libsigrokdecode.git/blobdiff - module_sigrokdecode.c
Split annotation-specific output to another struct
[libsigrokdecode.git] / module_sigrokdecode.c
index 655c1f5a18a019f97427f2555dcb9cada55f541f..46b3ced7695db861d61acc126f473b9ec48c69cd 100644 (file)
@@ -71,12 +71,15 @@ PyMODINIT_FUNC PyInit_sigrokdecode(void)
        /* expose output types as symbols in the sigrokdecode module */
        if (PyModule_AddIntConstant(mod, "OUTPUT_ANN", SRD_OUTPUT_ANN) == -1)
                return NULL;
-       if (PyModule_AddIntConstant(mod, "OUTPUT_PROTO",
-           SRD_OUTPUT_PROTO) == -1)
+       if (PyModule_AddIntConstant(mod, "OUTPUT_PYTHON",
+           SRD_OUTPUT_PYTHON) == -1)
                return NULL;
        if (PyModule_AddIntConstant(mod, "OUTPUT_BINARY",
            SRD_OUTPUT_BINARY) == -1)
                return NULL;
+       if (PyModule_AddIntConstant(mod, "SRD_CONF_SAMPLERATE",
+                       SRD_CONF_SAMPLERATE) == -1)
+               return NULL;
 
        mod_sigrokdecode = mod;