1
0
mirror of https://github.com/xtacocorex/CHIP_IO synced 2025-07-20 04:43:21 +00:00

Realized that the AP-EINT1/3 test code wasn't actually testing callbacks, they do work properly in my testing. Reverting gptest.py to what it was. Revision Update. Issue #9 is resolved.

This commit is contained in:
Robert Wolterman
2016-07-10 19:23:45 -05:00
parent 3d1ecb6b5e
commit a4dd1558f0
5 changed files with 52 additions and 81 deletions

View File

@ -76,6 +76,6 @@ void define_constants(PyObject *module)
both_edge = Py_BuildValue("i", BOTH_EDGE);
PyModule_AddObject(module, "BOTH", both_edge);
version = Py_BuildValue("s", "0.0.9");
version = Py_BuildValue("s", "0.1.0");
PyModule_AddObject(module, "VERSION", version);
}