diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-11-30 11:33:44 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-11-30 13:33:16 -0500 |
commit | b14db404b55424ef783a163a02da8868120b36c9 (patch) | |
tree | a100ccc1d8a63af86f0fa57fa70c48c124014ad9 /klippy/chelper.py | |
parent | 7cb71df02cbe417798067a4f68a62dcbca8be025 (diff) | |
download | kutter-b14db404b55424ef783a163a02da8868120b36c9.tar.gz kutter-b14db404b55424ef783a163a02da8868120b36c9.tar.xz kutter-b14db404b55424ef783a163a02da8868120b36c9.zip |
pyhelper: Move helper functions from serialqueue.c to new file
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper.py')
-rw-r--r-- | klippy/chelper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/chelper.py b/klippy/chelper.py index cca91b43..7fb8fd98 100644 --- a/klippy/chelper.py +++ b/klippy/chelper.py @@ -7,9 +7,9 @@ import os, logging import cffi COMPILE_CMD = "gcc -Wall -g -O -shared -fPIC -o %s %s" -SOURCE_FILES = ['stepcompress.c', 'serialqueue.c'] +SOURCE_FILES = ['stepcompress.c', 'serialqueue.c', 'pyhelper.c'] DEST_LIB = "c_helper.so" -OTHER_FILES = ['list.h', 'serialqueue.h'] +OTHER_FILES = ['list.h', 'serialqueue.h', 'pyhelper.h'] defs_stepcompress = """ struct stepcompress *stepcompress_alloc(uint32_t max_error |