1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
|
/* $Id: libk8055.c,v 1.7 2008/08/20 17:00:55 mr_brain Exp $
This file is part of the libk8055 Library.
The libk8055 Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The libk8055 Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the
Free Software Foundation, Inc.,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
http://opensource.org/licenses/
Copyleft (C) 2005 by Sven Lindberg
k8055@k8055.mine.nu
Copyright (C) 2007 by Pjetur G. Hjaltason
pjetur@pjetur.net
Commenting, general rearrangement of code, bugfixes,
python interface with swig and simple k8055 python class
Input packet format
+---+---+---+---+---+---+---+---+
|DIn|Sta|A1 |A2 | C1 | C2 |
+---+---+---+---+---+---+---+---+
DIn = Digital input in high nibble, except for input 3 in 0x01
Sta = Status, Board number + 1
A1 = Analog input 1, 0-255
A2 = Analog input 2, 0-255
C1 = Counter 1, 16 bits (lsb)
C2 = Counter 2, 16 bits (lsb)
Output packet format
+---+---+---+---+---+---+---+---+
|CMD|DIG|An1|An2|Rs1|Rs2|Dbv|Dbv|
+---+---+---+---+---+---+---+---+
CMD = Command
DIG = Digital output bitmask
An1 = Analog output 1 value, 0-255
An2 = Analog output 2 value, 0-255
Rs1 = Reset counter 1, command 3
Rs2 = Reset counter 3, command 4
Dbv = Debounce value for counter 1 and 2, command 1 and 2
Or split by commands
Cmd 0, Reset ??
Cmd 1, Set debounce Counter 1
+---+---+---+---+---+---+---+---+
|CMD| | | | | |Dbv| |
+---+---+---+---+---+---+---+---+
Cmd 2, Set debounce Counter 2
+---+---+---+---+---+---+---+---+
|CMD| | | | | | |Dbv|
+---+---+---+---+---+---+---+---+
Cmd 3, Reset counter 1
+---+---+---+---+---+---+---+---+
| 3 | | | | 00| | | |
+---+---+---+---+---+---+---+---+
Cmd 4, Reset counter 2
+---+---+---+---+---+---+---+---+
| 4 | | | | | 00| | |
+---+---+---+---+---+---+---+---+
cmd 5, Set analog/digital
+---+---+---+---+---+---+---+---+
| 5 |DIG|An1|An2| | | | |
+---+---+---+---+---+---+---+---+
**/
#include <string.h>
#include <stdio.h>
#include <usb.h>
#include <assert.h>
#include <math.h>
#include "k8055.h"
#define STR_BUFF 256
#define READ_RETRY 3
#define WRITE_RETRY 3
#define K8055_IPID 0x5500
#define VELLEMAN_VENDOR_ID 0x10cf
#define K8055_MAX_DEV 4
#define USB_OUT_EP 0x01 /* USB output endpoint */
#define USB_INP_EP 0x81 /* USB Input endpoint */
#define USB_TIMEOUT 20
#define K8055_ERROR -1
#define DIGITAL_INP_OFFSET 0
#define DIGITAL_OUT_OFFSET 1
#define ANALOG_1_OFFSET 2
#define ANALOG_2_OFFSET 3
#define COUNTER_1_OFFSET 4
#define COUNTER_2_OFFSET 6
#define CMD_RESET 0x00
#define CMD_SET_DEBOUNCE_1 0x01
#define CMD_SET_DEBOUNCE_2 0x01
#define CMD_RESET_COUNTER_1 0x03
#define CMD_RESET_COUNTER_2 0x04
#define CMD_SET_ANALOG_DIGITAL 0x05
/* set debug to 0 to not print excess info */
int debug = 0;
static struct k8055_dev k8055d[K8055_MAX_DEV];
static struct k8055_dev* curr_dev;
/* Actual read of data from the device endpoint, retry READ_RETRY times if not responding ok */
static int k8055_read( struct k8055_dev* dev ) {
if( dev->dev_no==0 ) return K8055_ERROR;
for( int i=0; i<READ_RETRY; i++ ) {
int read_status = usb_interrupt_read( dev->device_handle, USB_INP_EP, ( char* )dev->data_in, PACKET_LEN, USB_TIMEOUT );
if( ( read_status==PACKET_LEN ) && ( dev->data_in[1]==dev->dev_no ) ) {
if( debug ) fprintf( stderr,"read dev %d data : %X\n",dev->data_in[1],dev->data_in );
return 0;
}
if( debug ) fprintf( stderr, "k8055 read retry\n" );
}
return K8055_ERROR;
}
/* Actual write of data to the device endpont, retry WRITE_RETRY times if not reponding correctly */
static int k8055_write( struct k8055_dev* dev ) {
if( dev->dev_no == 0 ) return K8055_ERROR;
for( int i=0; i<WRITE_RETRY; i++ ) {
int write_status = usb_interrupt_write( dev->device_handle, USB_OUT_EP, ( char* )dev->data_out, PACKET_LEN, USB_TIMEOUT );
if( write_status==PACKET_LEN ) return 0;
if( debug ) fprintf( stderr, "k8055 write retry\n" );
}
return K8055_ERROR;
}
/* If device is owned by some kernel driver, try to disconnect it and claim the device*/
static int takeover_device( usb_dev_handle* udev, int interface ) {
char driver_name[STR_BUFF];
memset( driver_name, 0, STR_BUFF );
int ret = K8055_ERROR;
assert( udev != NULL );
if( usb_get_driver_np( udev, interface, driver_name, sizeof( driver_name ) )==0 ) {
if( debug ) fprintf( stderr, "usb_get_driver_np success: %s\n", driver_name );
if( usb_detach_kernel_driver_np( udev, interface )==0 ) {
if( debug ) fprintf( stderr, "usb_detach_kernel_driver_np success" );
} else {
if( debug ) fprintf( stderr, "usb_detach_kernel_driver_np failure : %s\n", usb_strerror() );
}
} else {
if( debug ) fprintf( stderr, "usb_get_driver_np failure : %s\n", usb_strerror() );
}
if ( usb_claim_interface( udev, interface )==0 ) {
usb_set_altinterface( udev, interface );
} else {
if( debug ) fprintf( stderr, "usb_claim_interface failure: %s\n", usb_strerror() );
return K8055_ERROR;
}
usb_set_configuration( udev, 1 );
if ( debug ) fprintf( stderr, "Found interface %d, took over the device\n", interface );
return 0;
}
char* version( void ) {
return( VERSION );
}
int open_device( struct k8055_dev* dev, long board_address ) {
usb_init();
usb_find_busses();
usb_find_devices();
int ipid = K8055_IPID + ( int )board_address;
struct usb_bus* busses = usb_get_busses();
for( struct usb_bus* bus=busses; bus; bus=bus->next ) {
for( struct usb_device* usb_dev=bus->devices; usb_dev; usb_dev=usb_dev->next ) {
if( ( usb_dev->descriptor.idVendor==VELLEMAN_VENDOR_ID ) && ( usb_dev->descriptor.idProduct==ipid ) ) {
dev->dev_no = 0;
dev->device_handle = usb_open( usb_dev );
if( dev->device_handle==NULL ) {
if( debug ) fprintf( stderr,"usb_open failure : %s\n", usb_strerror() );
return K8055_ERROR;
}
if( debug ) fprintf( stderr, "Velleman Device Found @ Address %s Vendor 0x0%x Product ID 0x0%x\n", usb_dev->filename, usb_dev->descriptor.idVendor, usb_dev->descriptor.idProduct );
if( takeover_device( dev->device_handle, 0 )<0 ) {
if( debug ) fprintf( stderr, "Can not take over the device from the OS driver\n" );
usb_close( dev->device_handle );
dev->device_handle = NULL;
return K8055_ERROR;
} else {
memset( dev->data_out,0,PACKET_LEN );
dev->dev_no = board_address + 1;
dev->data_out[0] = CMD_RESET;
k8055_write( dev );
if ( k8055_read( dev )==0 ) {
if( debug ) fprintf( stderr, "Device %d ready\n",board_address );
return board_address;
} else {
if( debug ) fprintf( stderr, "Device %d not ready\n",board_address );
dev->dev_no = 0;
usb_close( dev->device_handle );
dev->device_handle = NULL;
return K8055_ERROR;
}
}
}
}
}
if( debug ) fprintf( stderr, "Could not find Velleman k8055 with address %d\n",( int )board_address );
return K8055_ERROR;
}
int close_device( struct k8055_dev* dev ) {
if ( dev->dev_no == 0 ) {
if ( debug ) fprintf( stderr, "Current device is not open\n" );
return 0;
}
if( dev->device_handle==NULL ) {
if ( debug ) fprintf( stderr, "Current device is marked as open, but device hanlde is NULL\n" );
dev->dev_no = 0;
return 0;
}
int rc = usb_close( dev->device_handle );
if ( rc >= 0 ) {
dev->dev_no = 0;
dev->device_handle = NULL;
}
return rc;
}
long search_devices( void ) {
int ret = 0;
usb_init();
usb_find_busses();
usb_find_devices();
struct usb_bus* busses = usb_get_busses();
for ( struct usb_bus* bus = busses; bus; bus = bus->next ) {
for( struct usb_device* usb_dev=bus->devices; usb_dev; usb_dev=usb_dev->next ) {
if ( usb_dev->descriptor.idVendor == VELLEMAN_VENDOR_ID ) {
if( usb_dev->descriptor.idProduct == K8055_IPID + 0 ) ret |= 0x01;
if( usb_dev->descriptor.idProduct == K8055_IPID + 1 ) ret |= 0x02;
if( usb_dev->descriptor.idProduct == K8055_IPID + 2 ) ret |= 0x04;
if( usb_dev->descriptor.idProduct == K8055_IPID + 3 ) ret |= 0x08;
/* else some other kind of Velleman board */
}
}
}
if( debug ) fprintf( stderr,"found devices : %X\n",ret );
return ret;
}
long read_analog_channel( struct k8055_dev* dev, long channel ) {
if ( !( channel==1 || channel==2 ) ) return K8055_ERROR;
if ( k8055_read( dev )==0 ) {
if ( channel==1 ) {
return dev->data_in[ANALOG_1_OFFSET];
} else {
return dev->data_in[ANALOG_2_OFFSET];
}
}
return K8055_ERROR;
}
int read_all_analog( struct k8055_dev* dev, long* data1, long* data2 ) {
if ( k8055_read( dev )!=0 ) return K8055_ERROR;
*data1 = dev->data_in[ANALOG_1_OFFSET];
*data2 = dev->data_in[ANALOG_2_OFFSET];
return 0;
}
int output_analog_channel( struct k8055_dev* dev ,long channel, long data ) {
if ( !( channel==1 || channel==2 ) ) return K8055_ERROR;
dev->data_out[0] = CMD_SET_ANALOG_DIGITAL;
if ( channel==1 ) {
dev->data_out[ANALOG_1_OFFSET] = ( unsigned char )data;
} else {
dev->data_out[ANALOG_2_OFFSET] = ( unsigned char )data;
}
return k8055_write( dev );
}
int output_all_analog( struct k8055_dev* dev, long data1, long data2 ) {
dev->data_out[0] = CMD_SET_ANALOG_DIGITAL;
dev->data_out[2] = ( unsigned char )data1;
dev->data_out[3] = ( unsigned char )data2;
return k8055_write( dev );
}
int clear_all_analog( struct k8055_dev* dev ) {
return output_all_analog( dev, 0, 0 );
}
int clear_analog_channel( struct k8055_dev* dev, long channel ) {
if ( !( channel==1 || channel==2 ) ) return K8055_ERROR;
if ( channel==1 ) {
return output_analog_channel( dev, 1, 0 );
} else {
return output_analog_channel( dev, 2, 0 );
}
}
int set_analog_channel( struct k8055_dev* dev, long channel ) {
if ( !( channel==1 || channel==2 ) ) return K8055_ERROR;
if ( channel == 2 ) {
return output_analog_channel( dev, 2, 0xff );
} else {
return output_analog_channel( dev, 1, 0xff );
}
}
int set_all_analog( struct k8055_dev* dev ) {
return output_all_analog( dev, 0xff, 0xff );
}
int write_all_digital( struct k8055_dev* dev, long data ) {
dev->data_out[0] = CMD_SET_ANALOG_DIGITAL;
dev->data_out[1] = ( unsigned char )data;
return k8055_write( dev );
}
int clear_digital_channel( struct k8055_dev* dev, long channel ) {
unsigned char data;
if ( channel<1 || channel>8 ) return K8055_ERROR;
data = dev->data_out[1] & ~( 1 << ( channel-1 ) );
return write_all_digital( dev, data );
}
int clear_all_digital( struct k8055_dev* dev ) {
return write_all_digital( dev, 0x00 );
}
int set_digital_channel( struct k8055_dev* dev, long channel ) {
unsigned char data;
if ( channel<1 || channel>8 ) return K8055_ERROR;
data = dev->data_out[1] | ( 1 << ( channel-1 ) );
return write_all_digital( dev, data );
}
int set_all_digital( struct k8055_dev* dev ) {
return write_all_digital( dev, 0xff );
}
int read_digital_channel( struct k8055_dev* dev, long channel ) {
int rval;
if ( channel<1 || channel>8 ) return K8055_ERROR;
if ( ( rval = read_all_digital( dev ) ) == K8055_ERROR ) return K8055_ERROR;
return ( ( rval & ( 1 << ( channel-1 ) ) ) > 0 );
}
long read_all_digital( struct k8055_dev* dev ) {
int return_data = 0;
if ( k8055_read( dev )!=0 ) return K8055_ERROR;
return_data = (
( ( dev->data_in[0] >> 4 ) & 0x03 ) | /* Input 1 and 2 */
( ( dev->data_in[0] << 2 ) & 0x04 ) | /* Input 3 */
( ( dev->data_in[0] >> 3 ) & 0x18 ) ); /* Input 4 and 5 */
return return_data;
}
int read_all_values( struct k8055_dev* dev, long int* data1, long int* data2, long int* data3, long int* data4, long int* data5 ) {
if ( k8055_read( dev )!=0 ) return K8055_ERROR;
*data1 = (
( ( dev->data_in[0] >> 4 ) & 0x03 ) | /* Input 1 and 2 */
( ( dev->data_in[0] << 2 ) & 0x04 ) | /* Input 3 */
( ( dev->data_in[0] >> 3 ) & 0x18 ) ); /* Input 4 and 5 */
*data2 = dev->data_in[ANALOG_1_OFFSET];
*data3 = dev->data_in[ANALOG_2_OFFSET];
*data4 = *( ( short int* )( &dev->data_in[COUNTER_1_OFFSET] ) );
*data5 = *( ( short int* )( &dev->data_in[COUNTER_2_OFFSET] ) );
return 0;
}
int set_all_values( struct k8055_dev* dev, int digital_data, int ad_data1, int ad_data2 ) {
dev->data_out[0] = CMD_SET_ANALOG_DIGITAL;
dev->data_out[1] = ( unsigned char )digital_data;
dev->data_out[2] = ( unsigned char )ad_data1;
dev->data_out[3] = ( unsigned char )ad_data2;
return k8055_write( dev );
}
int reset_counter( struct k8055_dev* dev, long counter ) {
if ( !( counter==1 || counter==2 ) ) return K8055_ERROR;
dev->data_out[0] = 0x02 + ( unsigned char )counter;
dev->data_out[3+counter] = 0x00;
return k8055_write( dev );
}
long read_counter( struct k8055_dev* dev, long counter ) {
if ( !( counter==1 || counter==2 ) ) return K8055_ERROR;
if ( k8055_read( dev )!=0 ) return K8055_ERROR;
if ( counter==1 ) {
return *( ( short int* )( &dev->data_in[COUNTER_1_OFFSET] ) );
} else {
return *( ( short int* )( &dev->data_in[COUNTER_2_OFFSET] ) );
}
}
int set_counter_debounce_time( struct k8055_dev* dev, long counter, long debounce_time ) {
float value;
if ( !( counter==1 || counter==2 ) ) return K8055_ERROR;
dev->data_out[0] = ( unsigned char )counter;
/*
* the velleman k8055 use a exponetial formula to split up the
* debounce_time 0-7450 over value 1-255. I've tested every value and
* found that the formula dbt=0,338*value^1,8017 is closest to
* vellemans dll. By testing and measuring times on the other hand I
* found the formula dbt=0,115*x^2 quite near the actual values, a
* little below at really low values and a little above at really
* high values. But the time set with this formula is within +-4%
* -- Sven Lindberg
*/
if ( debounce_time > 7450 ) debounce_time = 7450;
value = sqrtf( debounce_time / 0.115 );
/* simple round() function) */
if ( value > ( ( int )value + 0.49999999 ) ) value+=1;
dev->data_out[5+counter] = ( unsigned char )value;
if ( debug ) fprintf( stderr, "Debouncetime%d value for k8055:%d\n",( int )counter, dev->data_out[5+counter] );
return k8055_write( dev );
}
/** Velleman API ***************************************************************************************************************************/
char* Version( void ) {
return( VERSION );
}
/* New function in version 2 of Velleman DLL, should return devices-found bitmask or 0*/
long SearchDevices( void ) {
return search_devices();
}
/* Open device - scan through usb busses looking for the right device, claim it and then open the device */
int OpenDevice( long board_address ) {
if( board_address<0 || board_address>=K8055_MAX_DEV ) return K8055_ERROR;
if( k8055d[board_address].dev_no!=0 ) return board_address;
int ret = open_device( &k8055d[board_address], board_address );
if ( ret != K8055_ERROR ) {
curr_dev = &k8055d[board_address];
return ret;
}
return K8055_ERROR;
}
/* Close the Current device */
int CloseDevice() {
return close_device( curr_dev );
}
/* New function in version 2 of Velleman DLL, should return deviceno if OK */
long SetCurrentDevice( long deviceno ) {
if ( deviceno < 0 || deviceno >= K8055_MAX_DEV ) return K8055_ERROR;
if ( k8055d[deviceno].dev_no == 0 ) return K8055_ERROR;
curr_dev = &k8055d[deviceno];
return deviceno;
}
long ReadAnalogChannel( long channel ) {
return read_analog_channel( curr_dev, channel );
}
int ReadAllAnalog( long* data1, long* data2 ) {
return read_all_analog( curr_dev, data1, data2 );
}
int OutputAnalogChannel( long channel, long data ) {
return output_analog_channel( curr_dev, channel, data );
}
int OutputAllAnalog( long data1, long data2 ) {
return output_all_analog( curr_dev, data1, data2 );
}
int ClearAllAnalog() {
return clear_all_analog( curr_dev );
}
int ClearAnalogChannel( long channel ) {
return clear_analog_channel( curr_dev, channel );
}
int SetAnalogChannel( long channel ) {
return set_analog_channel( curr_dev, channel );
}
int SetAllAnalog() {
return set_all_analog( curr_dev );
}
int WriteAllDigital( long data ) {
return write_all_digital( curr_dev, data );
}
int ClearDigitalChannel( long channel ) {
return clear_digital_channel( curr_dev, channel );
}
int ClearAllDigital() {
return clear_all_digital( curr_dev );
}
int SetDigitalChannel( long channel ) {
return set_digital_channel( curr_dev, channel );
}
int SetAllDigital() {
return set_all_digital( curr_dev );
}
int ReadDigitalChannel( long channel ) {
return read_digital_channel( curr_dev, channel );
}
long ReadAllDigital() {
return read_all_digital( curr_dev );
}
int ReadAllValues( long int* data1, long int* data2, long int* data3, long int* data4, long int* data5 ) {
return read_all_values( curr_dev, data1, data2, data3, data4, data5 );
}
int SetAllValues( int DigitalData, int AdData1, int AdData2 ) {
return set_all_values( curr_dev, DigitalData, AdData1, AdData2 );
}
int ResetCounter( long counter ) {
return reset_counter( curr_dev, counter );
}
long ReadCounter( long counter ) {
return read_counter( curr_dev, counter );
}
int SetCounterDebounceTime( long counter, long debounce_time ) {
return set_counter_debounce_time( curr_dev, counter, debounce_time );
}
|