X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=module_sigrokdecode.c;h=d5172d6febf5823dd22503c6c73604b3cfaa606e;hp=1cbcc40353c1759dba473858e9f9a289a027aa5a;hb=7ee0c40b4ac605c68a8ec2008ef4ab61a1872475;hpb=55c3c5f4b9d38b85fae2c39a8a6150b4c50b1bdb diff --git a/module_sigrokdecode.c b/module_sigrokdecode.c index 1cbcc40..d5172d6 100644 --- a/module_sigrokdecode.c +++ b/module_sigrokdecode.c @@ -1,5 +1,5 @@ /* - * This file is part of the sigrok project. + * This file is part of the libsigrokdecode project. * * Copyright (C) 2012 Bert Vermeulen * @@ -17,10 +17,12 @@ * along with this program. If not, see . */ -#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ -#include "sigrokdecode-internal.h" +#include "libsigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#include "libsigrokdecode-internal.h" #include "config.h" +/** @cond PRIVATE */ + /* type_decoder.c */ extern SRD_PRIV PyTypeObject srd_Decoder_type; @@ -28,11 +30,13 @@ extern SRD_PRIV PyTypeObject srd_Decoder_type; extern SRD_PRIV PyTypeObject srd_logic_type; /* - * When initialized, a reference to this module inside the python interpreter + * When initialized, a reference to this module inside the Python interpreter * lives here. */ SRD_PRIV PyObject *mod_sigrokdecode = NULL; +/** @endcond */ + static struct PyModuleDef sigrokdecode_module = { PyModuleDef_HEAD_INIT, .m_name = "sigrokdecode", @@ -40,11 +44,12 @@ static struct PyModuleDef sigrokdecode_module = { .m_size = -1, }; -SRD_PRIV PyMODINIT_FUNC PyInit_sigrokdecode(void) +/** @cond PRIVATE */ +PyMODINIT_FUNC PyInit_sigrokdecode(void) { PyObject *mod; - /* tp_new needs to be assigned here for compiler portability */ + /* tp_new needs to be assigned here for compiler portability. */ srd_Decoder_type.tp_new = PyType_GenericNew; if (PyType_Ready(&srd_Decoder_type) < 0) return NULL; @@ -63,17 +68,21 @@ SRD_PRIV PyMODINIT_FUNC PyInit_sigrokdecode(void) (PyObject *)&srd_logic_type) == -1) return NULL; - /* expose output types as symbols in the sigrokdecode module */ + /* 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, "OUTPUT_META", SRD_OUTPUT_META) == -1) return NULL; - if (PyModule_AddIntConstant(mod, "OUTPUT_BINARY", - SRD_OUTPUT_BINARY) == -1) + /* Expose meta input symbols. */ + if (PyModule_AddIntConstant(mod, "SRD_CONF_SAMPLERATE", SRD_CONF_SAMPLERATE) == -1) return NULL; mod_sigrokdecode = mod; return mod; } +/** @endcond */