diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-06-05 07:52:26 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-06-05 07:52:26 +0200 |
commit | 036bcb8da90fa19b4a6270da4b4b0df5806f2a39 (patch) | |
tree | 5e0e96e34d99bc38992b34762d1fdead7418b5f6 /libk8055/k8055.h | |
parent | acad3bf6c8d3751d42f1fa49b95763b9e5388c07 (diff) | |
download | k8055-036bcb8da90fa19b4a6270da4b4b0df5806f2a39.zip k8055-036bcb8da90fa19b4a6270da4b4b0df5806f2a39.tar.gz |
set_debug_(on|off) => set_debug/get_debug
Diffstat (limited to 'libk8055/k8055.h')
-rw-r--r-- | libk8055/k8055.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libk8055/k8055.h b/libk8055/k8055.h index 83602a3..d1f8359 100644 --- a/libk8055/k8055.h +++ b/libk8055/k8055.h @@ -59,8 +59,8 @@ extern "C" { int k8055_counter_2( struct k8055_dev* dev ); char* k8055_version( void ); - void k8055_set_debug_on( void ); - void k8055_set_debug_off( void ); + int k8055_set_debug( int status ); + int k8055_get_debug( void ); int k8055_search_devices( void ); int k8055_open_device( struct k8055_dev* dev, int board_address ); |