~ubuntu-branches/ubuntu/trusty/comedilib/trusty

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
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
2007-10-26 17:10  fmhess

	* demo/ao_mmap.c: Fixed compile warning on amd64

2007-10-21 16:05  fmhess

	* etc/hotplug/usb/: usbdux/Makefile.am, usbduxfast/Makefile.am:
	  Moved EXTRA_DIST outside of conditionals.

2007-10-17 16:17  fmhess

	* include/comedi.h: Synced with comedi.

2007-10-14 20:02  fmhess

	* swig/: comedi.i, ruby/demo/cmd, ruby/lib/comedi.rb: Patch from
	  steven.jenkins@ieee.org (Steven Jenkins):

	  The SWIG interface file (swig/comedi.i) is out of date with
	  respect to comedi.h and comedilib.h. I've attempted to make it
	  current by applying most of the changes since 1.22 (both
	  headers).

	  My ability to test is limited. The swig/ruby/demo/cmd application
	  runs successfully using the comedi_test device. The python
	  extension library compiles, but that's as far as I've taken it.

2007-09-28 15:02  fmhess

	* include/comedi.h: Sync with comedi.

2007-08-27 17:46  fmhess

	* Makefile.am, configure.ac: Added C++ binding.

2007-08-27 16:32  fmhess

	* include/Makefile.am: Got rid of redundant EXTRA_DIST

2007-08-19 14:39  fmhess

	* AUTHORS, doc/Makefile.am: Patch from Tobias Blaser
	  <tblaser@freesurf.ch>:

	  Here is a patch to CVS which adds the DESTDIR variable to the
	  installation rules in the comedilib doc Makefile. Convenient when
	  creating packages.

2007-08-19 14:30  fmhess

	* configure.ac, lib/Makefile.am, scxi/Makefile.am: Gave libscxi
	  independent version info from libcomedi.  Removed attempt to link
	  to libcomedi when building libscxi.

2007-08-14 09:21  fmhess

	* demo/README: Added blurb about do_waveform.

2007-08-13 17:21  fmhess

	* demo/: Makefile.am, do_waveform.c: Added digital output command
	  demo.

2007-08-13 17:20  fmhess

	* demo/ao_waveform.c: Be a little more correct by setting
	  CMDF_WRITE flag, in preparation for subdevices that support both
	  input and output commands.

2007-08-13 17:19  fmhess

	* demo/common.c: print subdevice too on command dumps.

2007-08-13 17:18  fmhess

	* include/comedi.h: synced with comedi.

2007-08-10 14:48  fmhess

	* demo/: ao_mmap.c, ao_waveform.c, common.c, examples.h: Moved
	  comedi_internal_trigger into common.c

2007-08-10 13:50  fmhess

	* demo/ao_waveform.c: Removed some obsolete comments.

2007-08-09 10:10  fmhess

	* demo/gpct_buffered_counting.c: Need to use stop_src=TRIG_NONE

2007-08-07 16:59  fmhess

	* man/comedi_config.8: Default buffer sizes are actually 64k now.

2007-08-02 15:46  fmhess

	* demo/cmd.c, demo/info.c, demo/mmap.c, doc/funcref,
	  include/comedilib.h, lib/cmd.c, lib/version_script,
	  swig/comedi.i, testing/cmd_1.c, testing/cmd_2.c, testing/cmd_3.c,
	  testing/inttrig.c, testing/mmap.c, testing/select.c: Fixed
	  comedi_get_cmd_generic_timed() by adding a chanlist_len
	  parameter.  Old version is still available in library, thanks to
	  the magic of the version_script.

2007-08-02 15:43  fmhess

	* doc/drivers.txt: sync with comedi

2007-08-02 14:44  fmhess

	* demo/cmd.c: Removed duplicate declaration.

2007-07-31 15:51  fmhess

	* Makefile.am, README.CVS, autogen.sh: Blah, a fresh cvs checkout
	  does need a couple command-line options to autoreconf, so put
	  autogen.sh back in.

2007-07-31 13:47  fmhess

	* ChangeLog (tags: v0_8_0): Autogenerated ChangeLog using "cvs2cl
	  -t"

2007-07-31 13:43  fmhess

	* configure.ac, doc/Makefile.am, etc/Makefile.am (utags: v0_8_0):
	  Got rid of doccomedilib, use "configure --docdir=blah" and
	  related options.  Fixed some problems with "make distcheck".

2007-07-31 13:38  fmhess

	* Makefile.am (tags: v0_8_0): autogen.sh is gone.

2007-07-31 10:50  fmhess

	* NEWS (tags: v0_8_0), README.CVS (tags: v0_8_0), autogen.sh: Got
	  rid of autogen.sh, and just tell people to run autoreconf.

2007-07-31 10:47  fmhess

	* AUTHORS (tags: v0_8_0): Added AUTHORS list to comedilib.

2007-07-31 10:27  fmhess

	* include/comedilib.h (tags: v0_8_0): Took comedi_dio_bitfield out
	  of _COMEDILIB_DEPRECATED for release, until bindings are updated.

2007-07-31 10:20  fmhess

	* doc/drivers.txt (tags: v0_8_0): synced with comedi

2007-07-30 22:44  fmhess

	* configure.ac, lib/buffer.c (tags: v0_8_0), lib/calib.c (tags:
	  v0_8_0), lib/dio.c (tags: v0_8_0), lib/get.c (tags: v0_8_0),
	  lib/version_script (tags: v0_8_0): Actually, according to
	  current:revision:age practice, the next release should be 0.8.0
	  since new functions have been added since 0.7.22.

2007-07-30 22:29  fmhess

	* configure.ac: Fixed up AC_INIT and AM_INIT_AUTOMAKE parameters.

2007-07-30 22:21  fmhess

	* configure.ac, lib/Makefile.am (tags: v0_8_0), m4/as-libtool.m4
	  (tags: v0_8_0): Move to current:revision:age discipline for
	  library version numbers.  Bumped version for next release.

2007-07-29 23:50  fmhess

	* doc/drivers.txt: Synced with comedi.

2007-07-29 23:26  fmhess

	* README (tags: v0_8_0): Added mention of comedi_calibrate and
	  comedi-nonfree-firmware tarballs.

2007-07-24 09:50  abbotti

	* doc/drivers.txt: synced with comedi

2007-07-24 09:38  abbotti

	* lib/Makefile.am: Add calib_lex.h to noinst_HEADERS.

2007-07-24 09:06  abbotti

	* doc/glossary.sgml (tags: v0_8_0): Add closing tags for <glosssee>
	  and <glossseealso>.

2007-07-16 11:01  fmhess

	* include/comedi.h (tags: v0_8_0): Synced with comedi.

2007-07-16 11:00  fmhess

	* demo/gpct_buffered_counting.c (tags: v0_8_0): Added some sanity
	  checks, and made it use the read subdev by default if no "-s"
	  command line option is given.

2007-07-16 10:01  fmhess

	* doc/reference.sgml (tags: v0_8_0): Corrected comments describing
	  read_subdevice and write_subdevice members of comedi_devinfo

2007-07-16 08:46  fmhess

	* demo/gpct_buffered_counting.c: Forgot to add file for new demo.

2007-07-13 16:32  fmhess

	* include/comedi.h: Sync with comedi.

2007-07-13 16:31  fmhess

	* demo/Makefile.am (tags: v0_8_0): Added NI GPCT buffered counting
	  example.

2007-07-12 10:57  fmhess

	* demo/choose_filter.c (tags: v0_8_0): New demo program.

2007-07-12 10:56  fmhess

	* include/comedi.h: sync with comedi

2007-07-11 14:26  fmhess

	* demo/gpct_simple_counting.c (tags: v0_8_0): Initialize counter
	  value to zero.

2007-07-11 14:26  fmhess

	* demo/gpct_pulse_generator.c (tags: v0_8_0): Added a comment.

2007-07-10 10:26  fmhess

	* demo/gpct_encoder.c (tags: v0_8_0): Removed unused variable.

2007-07-10 10:11  fmhess

	* demo/gpct_encoder.c: Cleaned up mixing of spaces/tabs for
	  indentation probably done by emacs.

2007-07-10 10:08  fmhess

	* demo/gpct_simple_counting.c: Removed some dead code.

2007-06-27 21:22  fmhess

	* demo/Makefile.am, demo/gpct_encoder.c, include/comedi.h: Demo
	  program for quadrature encoder counting with NI GPCT, from Anders
	  Blomdell <anders.blomdell@control.lth.se>

2007-05-24 06:51  bporr

	* etc/udev/90-comedi.rules (tags: v0_8_0):

	  Added a line which sets the permissions to 0666 for all
	  /dev/comedi devices.

2007-04-29 14:40  fmhess

	* etc/udev/Makefile.in: Removed autogenerated file from cvs.

2007-04-27 20:24  bporr

	* configure.ac: Used AC_ARG_WITH for udev as suggested by frank.

2007-04-24 16:22  fmhess

	* configure.ac: Silenced automake 1.10 warning.

2007-04-23 18:20  bporr

	* configure.ac, etc/Makefile.am, etc/hotplug/usb/usbdux/Makefile.am
	  (tags: v0_8_0), etc/hotplug/usb/usbduxfast/Makefile.am (tags:
	  v0_8_0), etc/udev/90-comedi.rules, etc/udev/Makefile.am (tags:
	  v0_8_0), etc/udev/Makefile.in, etc/udev/usbdux (tags: v0_8_0),
	  etc/udev/usbduxfast (tags: v0_8_0): Added udev support.

2007-04-18 10:04  fmhess

	* lib/calib_yacc.y (tags: v0_8_0): Fixed compile warning under gcc
	  4.1.2

2007-02-26 12:24  fmhess

	* include/comedi.h: synced with comedi.

2007-01-08 16:54  fmhess

	* include/comedi.h: synced with comedi.

2007-01-08 16:53  fmhess

	* demo/: Makefile.am, README (tags: v0_8_0), common.c (tags:
	  v0_8_0), examples.h (tags: v0_8_0), gpct_pulse_generator.c,
	  gpct_simple_counting.c: Added new gpct_simple_counting demo
	  (shares some code with gpct_pulse_generator demo through
	  common.c).

2007-01-08 15:56  fmhess

	* demo/inp.c (tags: v0_8_0): Print large unsigned values correctly
	  (not as negative numbers) for subdevice with 32 bit values.

2007-01-05 16:15  fmhess

	* demo/README: Added brief description of choose_routing demo.

2007-01-05 16:09  fmhess

	* demo/: Makefile.am, README, gpct_pulse_generator.c: Added
	  gpct_pulse_generator demo.

2007-01-05 15:39  fmhess

	* include/comedi.h: synced with comedi

2007-01-05 14:35  fmhess

	* demo/info.c (tags: v0_8_0): print max data value as unsigned
	  value instead of signed, so 32 bit counters show proper max value
	  (instead of -1).

2007-01-03 16:14  fmhess

	* demo/: antialias.c (tags: v0_8_0), ao_mmap.c (tags: v0_8_0),
	  ao_waveform.c (tags: v0_8_0), apply_cal.c (tags: v0_8_0),
	  choose_clock.c (tags: v0_8_0), choose_routing.c (tags: v0_8_0),
	  cmd.c (tags: v0_8_0), common.c, dio.c (tags: v0_8_0),
	  eeprom_dump.c (tags: v0_8_0), examples.h, info.c, inp.c, inpn.c
	  (tags: v0_8_0), insn.c (tags: v0_8_0), ledclock.c (tags: v0_8_0),
	  mmap.c (tags: v0_8_0), outp.c (tags: v0_8_0), poll.c (tags:
	  v0_8_0), receiver.c (tags: v0_8_0), select.c (tags: v0_8_0),
	  sender.c (tags: v0_8_0), sigio.c (tags: v0_8_0), sv.c (tags:
	  v0_8_0): Made parse_options() write options to a struct instead
	  of passing them through global variables.

2007-01-03 10:44  fmhess

	* demo/README: Added a sentence to ao_waveform description.

2007-01-03 10:43  fmhess

	* demo/: choose_clock.c, choose_routing.c: Removed some C99-isms
	  (mixed code and declarations)

2007-01-03 10:31  fmhess

	* configure.ac: Replaced deprecated AM_PROG_CC_STDC with
	  AC_PROG_CC_STDC

2006-10-25 15:57  fmhess

	* doc/other.sgml (tags: v0_8_0): Added a table with descriptions of
	  a few configuration instructions.

2006-10-25 14:53  fmhess

	* doc/: comedilib.sgml (tags: v0_8_0), glossary.sgml, install.sgml
	  (tags: v0_8_0), intro.sgml (tags: v0_8_0), reference.sgml,
	  tutorial.sgml (tags: v0_8_0): Updated to docbook 4.2.  Fixed
	  broken </link> in tutorial.sgml

2006-10-24 16:36  fmhess

	* include/comedi.h: Sync'd with comedi

2006-10-24 11:07  fmhess

	* doc/other.sgml: Updated RTSI documentation to reflect my changes.

2006-10-24 11:07  fmhess

	* include/comedi.h: Sync'ed with comedi.

2006-10-23 15:35  fmhess

	* demo/Makefile.am, demo/README, demo/choose_clock.c,
	  demo/choose_routing.c, demo/dio.c, include/comedi.h: Added
	  choose_clock and choose_routing demo programs.  Synced comedi.h
	  with comedi.	Made dio demo simply configure the line direction
	  based on the command line argument.

2006-10-17 14:19  fmhess

	* doc/funcref (tags: v0_8_0), include/comedilib.h, lib/calib.c,
	  lib/dio.c, lib/get.c, lib/version_script: Added const qualifiers
	  to some char* return values.	Added new experimental
	  comedi_dio_bitfield2() function which works with
	  > 32 channels.  Only works properly with ni_65xx currently.
	  Will post a request for review by any interested parties to list
	  before I bother making the rest of the drivers work with it.

2006-09-11 09:55  fmhess

	* doc/funcref: Added description of SDF_SOFT_CALIBRATED flag.

2006-09-08 15:40  fmhess

	* doc/reference.sgml: Added brief description of enum
	  comedi_conversion_direction

2006-09-08 14:38  fmhess

	* doc/funcref: Added entries for comedi_to_physical() and
	  comedi_from_physical().

2006-09-08 11:41  fmhess

	* include/comedi.h: sync with comedi

2006-09-08 10:53  fmhess

	* doc/funcref: Added entries for comedi_get_hardcal_converter() and
	  comedi_get_softcal_converter().  Clairified
	  comedi_apply_calibration() a little.

2006-09-07 15:09  fmhess

	* include/comedilib.h, lib/calib.c, lib/version_script: Added some
	  primative support for using software calibration in a way that
	  can be integrated with boards that don't use software
	  calibrations.

2006-08-31 14:09  fmhess

	* lib/calib_yacc.y: Fill in inverse polynomials for first order
	  soft calibrations.

2006-08-31 11:29  fmhess

	* lib/Makefile.am: Added flex and bison generated files to
	  MAINTAINERCLEANFILES

2006-08-28 18:59  fmhess

	* lib/calib_lex.l (tags: v0_8_0): Fix parsing of floating point
	  values in exponential notation, and numbers with a leading + or -
	  sign (untested).

2006-08-22 16:19  fmhess

	* lib/calib_yacc.y: Fixed problem with keeping track of whether a
	  software calibration is for the from_phys or to_phys direction.

2006-08-22 16:13  fmhess

	* lib/: calib_yacc.y, libinternal.h (tags: v0_8_0): Parsing of
	  calibration file with soft calibration information works now.

2006-08-22 14:14  fmhess

	* include/comedilib.h, lib/Makefile.am, lib/calib_lex.l,
	  lib/calib_yacc.y, lib/libinternal.h: First pass at parsing
	  additional calibration file elements which support software
	  calibration.

2006-07-20 07:51  abbotti

	* demo/: README, cmd.c, common.c, examples.h, inp.c: Applied patch
	  from David MacMahon <davidm -at- astro -dot- berkeley -dot- edu>.
	  Adds physical units support to comedilib demo programs.  I
	  changed one of the format strings to help line up values better
	  in the 'cmd' example.

2006-07-13 13:06  abbotti

	* demo/info.c: Use comedi_perror to report error if comedi_open
	  fails, and exit with exit code 1.

2006-07-13 08:45  abbotti

	* doc/funcref: Applied patch from David MacMahon <davidm -at- astro
	  -dot- berkeley -dot- edu>.  Add leading zeroes to subdevice flag
	  values.

2006-07-13 08:43  abbotti

	* demo/info.c: Applied (slightly modified) patch from David
	  MacMahon <davidm -at- astro -dot- berkeley -dot- edu>.  Reports
	  specific error string (strerror(errno)) if comedi_open fails (I
	  changed the format slightly from David's).  Displays subdevice
	  flags as a hexadecimal number.

2006-07-13 08:33  abbotti

	* configure.ac: Added AC_PROG_LIBTOOL, as suggested by the
	  autotools.

2006-05-01 22:09  fmhess

	* demo/ao_mmap.c: Patch from abbotti@mev.co.uk (Ian Abbott): Fixes
	  compile error with gcc 2.96.

2006-05-01 21:25  fmhess

	* doc/drivers.txt: synced with comedi

2006-05-01 21:21  fmhess

	* doc/other.sgml: RTSI documentation from terry1@beam.ltd.uk (Terry
	  Barnaby)

2006-03-02 20:00  fmhess

	* include/comedi.h: sync with comedi

2006-02-15 17:27  fmhess

	* Makefile.am: Removed comedi_calibrate from subdirs, as it has
	  been split into its own module.  Fix is from Ian Abbott
	  <abbotti@mev.co.uk>.

2006-02-05 15:56  fmhess

	* configure.ac, comedi_calibrate/Makefile.am,
	  comedi_calibrate/README, comedi_calibrate/cal_common.c,
	  comedi_calibrate/calib.h, comedi_calibrate/cb.c,
	  comedi_calibrate/cb64.c, comedi_calibrate/comedi_calibrate.c,
	  comedi_calibrate/ni.c, comedi_calibrate/ni_labpc.c,
	  comedi_calibrate/ni_m_series.c, comedi_calibrate/other.c,
	  comedi_calibrate/save_cal.c, comedi_calibrate/split_dumps,
	  comedi_calibrate/results/DAQCard-6024E,
	  comedi_calibrate/results/DAQCard-6036E,
	  comedi_calibrate/results/DAQCard-6062E,
	  comedi_calibrate/results/DAQCard-ai-16e-4,
	  comedi_calibrate/results/DAQCard-ai-16xe-50,
	  comedi_calibrate/results/at-mio-16de-10,
	  comedi_calibrate/results/at-mio-16e-1,
	  comedi_calibrate/results/at-mio-16e-10,
	  comedi_calibrate/results/at-mio-16e-2,
	  comedi_calibrate/results/at-mio-16xe-50,
	  comedi_calibrate/results/measurement-computing-pci-das1000,
	  comedi_calibrate/results/measurement-computing-pci-das1602-16,
	  comedi_calibrate/results/measurement-computing-pci-das6014,
	  comedi_calibrate/results/measurement-computing-pci-das6025,
	  comedi_calibrate/results/measurement-computing-pci-das6034,
	  comedi_calibrate/results/pci-6014,
	  comedi_calibrate/results/pci-6023e,
	  comedi_calibrate/results/pci-6024e,
	  comedi_calibrate/results/pci-6025e,
	  comedi_calibrate/results/pci-6031e,
	  comedi_calibrate/results/pci-6032e,
	  comedi_calibrate/results/pci-6033e,
	  comedi_calibrate/results/pci-6034e,
	  comedi_calibrate/results/pci-6035e,
	  comedi_calibrate/results/pci-6036e,
	  comedi_calibrate/results/pci-6052e,
	  comedi_calibrate/results/pci-6071e,
	  comedi_calibrate/results/pci-6110,
	  comedi_calibrate/results/pci-6711,
	  comedi_calibrate/results/pci-6713,
	  comedi_calibrate/results/pci-mio-16e-1,
	  comedi_calibrate/results/pci-mio-16e-4,
	  comedi_calibrate/results/pci-mio-16xe-10,
	  comedi_calibrate/results/pci-mio-16xe-50: Removed
	  comedi_calibrate from comedilib, it is now in its own module.

2006-02-02 20:06  fmhess

	* comedi_calibrate/ni.c: Make sure fine caldacs are reset before
	  attempting to recalibrate coarse caldacs for unipolar ai.

2006-01-08 11:37  fmhess

	* include/comedi.h: synced with comedi

2006-01-03 21:55  fmhess

	* comedi_calibrate/: Makefile.am, calib.h, comedi_calibrate.c,
	  ni.c, ni_m_series.c: Added beginnings of support for m-series
	  calibration.	So far, it just reads various internal calibration
	  sources.

2005-12-28 12:11  fmhess

	* demo/cmd.c: Made cmd demo work with SDF_LSAMPL subdevices.

2005-11-03 20:21  ds

	* doc/intro.sgml: Change Kurt Müller's email address

2005-11-02 20:24  fmhess

	* comedi_calibrate/results/measurement-computing-pci-das6014: new
	  results

2005-11-02 20:21  fmhess

	* comedi_calibrate/cb64.c: MC pci-das6014 calibration looks good.

2005-11-01 19:18  fmhess

	* include/comedi.h: sync comedi.h with comedi

2005-11-01 19:12  fmhess

	* comedi_calibrate/cb64.c: Added entry for MC pci-das6014

2005-10-06 18:20  fmhess

	* comedi_calibrate/: ni.c, results/pci-6024e: Update 6024e status
	  to STATUS_DONE, and update results for same.

2005-09-10 18:20  fmhess

	* comedi_calibrate/cb64.c: Added outline of code for loading
	  pci-6052 caldacs from eeprom (doesn't work yet).

2005-09-08 21:06  fmhess

	* comedi_calibrate/ni.c: Set status of at-mio-16xe-50 back to
	  STATUS_DONE, as it seems to be fine after all.

2005-08-26 20:36  fmhess

	* comedi_calibrate/ni.c: undo recent changes for AT-MIO-16XE-50,
	  which were unproductive.

2005-08-25 19:41  fmhess

	* comedi_calibrate/ni.c: update at-mio-16de-10 to STATUS_DONE

2005-08-25 19:38  fmhess

	* comedi_calibrate/results/at-mio-16de-10: new results

2005-08-24 18:35  fmhess

	* comedi_calibrate/ni.c: fix AT-MIO-16XE-50  calibration to take
	  into account coarse postgain offset that it seems to have (not
	  sure though).

2005-08-21 20:06  fmhess

	* comedi_calibrate/cb64.c: Added some diagnostics to try and figure
	  out the 6052.

2005-08-14 17:34  fmhess

	* comedi_calibrate/results/at-mio-16xe-50: updated results for
	  at-mio-16xe-50

2005-08-14 17:31  fmhess

	* comedi_calibrate/ni.c: update at-mio-16xe-50 status to
	  STATUS_DONE

2005-07-27 21:03  fmhess

	* comedi_calibrate/ni.c: first try at at-mio-16de-10 calibration

2005-06-07 19:28  bporr

	* etc/Makefile.am: Changed the path so that the .conf files are
	  copied in the doc directory. Otherwise they would have ended up
	  in /usr/share.

2005-06-07 19:27  bporr

	* lib/Makefile.am: Creates the proper so-version defined in
	  configure.ac.

2005-06-07 19:24  bporr

	* doc/Makefile.am: Documentation now goes in
	  usr/share/doc/libcomedi0. This path is just the same path debian
	  is using for its own files like README.debian or changlog. Thus,
	  all the docu is then in the same place.

2005-06-07 19:21  bporr

	* configure.ac: Added variable for the documentation

2005-05-19 19:14  fmhess

	* man/comedi_calibrate.8 (tags: v0_8_0): add mention of defaults
	  for --range, --subdevice, --channel, and --subdevice options

2005-05-16 21:35  fmhess

	* man/comedi_calibrate.8: add missing whitespace on description of
	  --help option

2005-04-26 20:03  fmhess

	* debian/: changelog, control, copyright, dirs,
	  libcomedi-dev.files, libcomedi0.files, libcomedi0.postinst,
	  libcomedi0.postrm, libcomedi0.shlibs, python-comedilib.files,
	  rules: removed debian files from cvs

2005-04-25 17:43  fmhess

	* lib/buffer.c: return errors properly in comedi_mark_buffer_read()
	  and comedi_mark_buffer_written()

2005-04-25 17:41  fmhess

	* lib/cmd.c (tags: v0_8_0): fix for comedi_get_generic_timed() from
	  Jan Gukelberger <g.u.g.i@gmx.de>

2005-04-10 22:13  fmhess

	* doc/driverwriting.sgml (tags: v0_8_0): update instructions for
	  integrating new drivers

2005-04-07 18:36  ds

	* lib/Makefile.am: Ugh, fix the soname problem

2005-04-07 18:33  ds

	* doc/drivers.txt: Update from Comedi.

2005-03-21 21:05  fmhess

	* doc/drivers.txt: sync with comedi

2005-03-19 13:51  fmhess

	* man/comedi_config.8 (tags: v0_8_0): add description of
	  --init-data options

2005-03-18 19:57  fmhess

	* comedi_config/comedi_config.c (tags: v0_8_0): cleanup file
	  pointers with fclose()

2005-03-18 19:42  bporr

	* comedi_config/comedi_config.c: Fixed a segfault. The fopen
	  command needs a string and not an integer as flag. Every entry in
	  the filename arrary is initally initialised with "NULL".

2005-03-17 12:28  fmhess

	* comedi_config/comedi_config.c: add support for multiple firmware
	  files, and uploading firmware on 64 bit arches

2005-03-17 12:27  fmhess

	* include/comedi.h: sync with comedi

2005-03-16 17:34  fmhess

	* doc/funcref: added table for subdevice flags to
	  comedi_get_subdevice_flags() documentation

2005-03-16 14:05  fmhess

	* testing/cmd_1.c (tags: v0_8_0): use SDF_RUNNING flag to test for
	  completion of ao command

2005-03-16 14:04  fmhess

	* lib/: get.c, version_script: updated version of
	  comedi_get_subdevice_flags() which is capable of returning
	  dynamic flags like SDF_RUNNING or SDF_BUSY

2005-03-13 12:04  fmhess

	* demo/README: info is board_info now

2005-03-12 16:11  fmhess

	* demo/Makefile.am: fix name collision with automake 1.9

2005-03-06 12:42  fmhess

	* doc/funcref, include/comedilib.h, lib/dio.c, lib/version_script:
	  added comedi_dio_get_config()

2005-03-06 12:35  fmhess

	* include/comedi.h: sync with comedi

2005-02-27 17:45  fmhess

	* testing/cmd_1.c: patch from Ian Abbott <abbotti@mev.co.uk>:

	  I was running "comedi_test -v" on my new analog output driver and
	  noticed that it was getting stuck in a loop during the
	  "cmd_write_fast_1_chan" test.

	  It turned out that the test had written more data to the buffer
	  than was required to complete the acquisition (it was using
	  cmd->stop_src = TRIG_COUNT) and then got stuck in a loop waiting
	  for the buffer to empty.

	  The attached patch stops the test_cmd_write_fast_1chan function
	  writing more data than is required to complete the acquisition.

2005-02-27 15:40  bporr

	* etc/hotplug/usb/usbduxfast/: usbduxfast_firmware.asm,
	  usbduxfast_firmware.hex (utags: v0_8_0): Conterpart to the change
	  in comedi: have taken out the bufferoverflow packet. It has
	  messed everything up. Just restarting the gpif is the best
	  option. Without any additional packets.

2005-02-26 21:18  bporr

	* etc/hotplug/usb/usbduxfast/usbduxfast (tags: v0_8_0): Set the
	  ring buffer length to 512kB for usbduxfast. This is needed for
	  graphical software like qtscope. Otherwise we get always buffer
	  overflows.

2005-02-24 15:46  fmhess

	* demo/tut2.c (tags: v0_8_0): added some error checks

2005-02-22 18:00  fmhess

	* comedi_calibrate/results/measurement-computing-pci-das6034: new
	  results

2005-02-22 18:00  fmhess

	* comedi_calibrate/cb64.c: mc pci-das6024 calibration is good now.

2005-02-22 08:00  fmhess

	* comedi_calibrate/cb64.c: crank up delay for mc pci-das6034 still
	  more.

2005-02-20 17:06  fmhess

	* comedi_calibrate/cb64.c: trying to fix calibration for meas.
	  computing pci-das6034

2005-02-09 18:20  fmhess

	* comedi_calibrate/results/measurement-computing-pci-das1000: new
	  results

2005-02-09 18:19  fmhess

	* comedi_calibrate/cb.c: calibration for pci-das1000 works now

2005-02-06 11:25  fmhess

	* include/comedilib_scxi.h, scxi/scxi.c (utags: v0_8_0): add
	  license header to scxi.c, and caleb as author

2005-02-06 11:22  fmhess

	* include/: comedi.h, comedilib.h, comedilib_scxi.h: fix license
	  headers, and prevent multiple includes of comedilib_scxi.h

2005-02-06 11:17  fmhess

	* include/comedilib_scxi.h, scxi/scxi.c: patch from
	  beat.zahnd@phim.unibe.ch (Beat ZAHND), he says:

	  I extendended the SCXI support for the 1122 module and moved the
	  scxi_boards structure to scxi.c

2005-02-02 21:45  fmhess

	* etc/pcmcia/comedi.conf (tags: v0_8_0): fix entries for pcm-das08

2005-01-22 22:11  fmhess

	* demo/ao_mmap.c, include/comedi.h, lib/buffer.c, swig/comedi.i
	  (tags: v0_8_0): mmap works for output waveforms now.

2005-01-22 09:31  fmhess

	* demo/ao_mmap.c: mark initial buffer contents as written, remove
	  some unused variables, fixed buffer overrun

2005-01-17 15:20  fmhess

	* demo/: Makefile.am, ao_mmap.c: added memory mapped ao waveform
	  demo (untested)

2005-01-09 19:46  fmhess

	* doc/comedilib.sgml, doc/funcref, include/comedilib.h,
	  lib/buffer.c, lib/version_script: added
	  comedi_mark_buffer_written() (untested)

2005-01-04 12:27  bporr

	* etc/hotplug/usb/usbduxfast/: usbduxfast_firmware.asm,
	  usbduxfast_firmware.hex:
	  Transfer mode for data is now bulk. If a buffer overflow occurrs
	  the next packet has two 0xff at the begining.

2004-12-04 13:12  fmhess

	* swig/ruby/Makefile.am (tags: v0_8_0): patch from
	  steven.jenkins@ieee.org (Steven Jenkins):

	  'setup.rb config' calls 'extconf.rb' in the ext directory to
	  build the extension Makefile. 'extconf.rb' looks for C source
	  files in the directory when it runs, so SWIG needs to run before
	  'setup.rb config'. The attached patch makes the output of SWIG a
	  prerequisite for ext/Makefile.

2004-12-02 02:59  ds

	* doc/: intro.sgml, other.sgml: change URL for RTLinux

2004-11-22 20:18  fmhess

	* swig/ruby/: Makefile.am, ext/extconf.rb (tags: v0_8_0): patch
	  from Steven Jenkins <steven.jenkins@ieee.org>:

	  If configure attempts to build the Ruby extension on a system
	  without a previous installation of comedilib, compilation fails
	  because gcc can't find comedilib.h.

	  The attached patch adds the distribution include directory to the
	  gcc search path when compiling the extension.

2004-11-20 11:56  fmhess

	* doc/drivers.txt: sync with comedi

2004-11-01 19:21  bporr

	* configure.ac:
	  Added path to the usbduxfast makefile

2004-11-01 19:19  bporr

	* etc/hotplug/usb/Makefile.am (tags: v0_8_0):
	  Added usbduxfast to the makefile.am

2004-11-01 19:17  bporr

	* etc/hotplug/usb/usbduxfast/: Makefile_asm (tags: v0_8_0), README
	  (tags: v0_8_0), fx2-include.asm (tags: v0_8_0), usbduxfast,
	  usbduxfast_firmware.asm, usbduxfast_firmware.hex:
	  usbduxfast hotplug scripts and firmware.

2004-11-01 19:15  bporr

	* etc/hotplug/usb/usbduxfast/Makefile.am:
	  For usbduxfast. Initial commit.

2004-10-17 11:25  fmhess

	* include/comedilib_scxi.h, scxi/scxi.c: changed a parameter name

2004-10-17 11:24  fmhess

	* configure.ac: docbook is not a binding

2004-10-17 11:22  fmhess

	* scxi/: Makefile.am, README (utags: v0_8_0): new scxi README from
	  Caleb Tennis

2004-10-10 13:03  fmhess

	* ChangeLog, Changelog: moved Changelog to ChangeLog and added
	  entry for 0.7.22

2004-09-26 23:27  fmhess

	* autogen.sh (tags: r0_7_22), configure.ac (tags: r0_7_22),
	  swig/python/Makefile.am (tags: v0_8_0, r0_7_22),
	  swig/python/comedi.py, swig/ruby/Makefile.am (tags: r0_7_22): fix
	  handling of swig so it is run at compile time instead of when
	  building tarball (due to possible dependence on swig library).

2004-09-22 18:54  bporr

	* configure.ac: Added docbook disable.	If the binding is now
	  disabled configure doesn't look for the program and is not
	  complaining that the program is not there.

2004-09-09 17:43  fmhess

	* comedi_calibrate/ni.c (tags: r0_7_22): add eeprom address for
	  reference voltage on at-mio-64e-3

2004-08-30 20:09  fmhess

	* comedi_calibrate/ni.c: add support for at-mio-64e-3

2004-08-18 18:22  bporr

	* etc/hotplug/usb/usbdux/README (tags: v0_8_0, r0_7_22): Changed
	  e-mail adress to berndporr@f2s.com

2004-08-18 18:21  bporr

	* etc/hotplug/usb/usbdux/fx2-include.asm (tags: v0_8_0, r0_7_22):
	  New constants for the new firmware. Access to revision control of
	  the FX2.

2004-08-18 18:16  bporr

	* etc/hotplug/usb/usbdux/usbdux_firmware.lst: Removed
	  usbdux_firmware.lst because it's just the listing of the
	  assembler which is not needed in the distro.

2004-08-18 18:12  bporr

	* etc/hotplug/usb/usbdux/: usbdux_firmware.asm (tags: v0_8_0,
	  r0_7_22), usbdux_firmware.hex (tags: v0_8_0, r0_7_22),
	  usbdux_firmware.lst: Minor bug fixes.

2004-08-14 16:33  fmhess

	* testing/info.c (tags: v0_8_0, r0_7_22): add "serial" to
	  subdevice_types

2004-08-12 23:58  ds

	* configure.ac: bump version

2004-08-12 23:57  ds

	* comedilib.pc.in (tags: v0_8_0, r0_7_22): add pkgconfig file

2004-08-12 23:52  ds

	* Makefile.am (tags: r0_7_22): Add pkgconfig file.  Add 'make dev'
	  target.

2004-08-11 17:56  ds

	* debian/: changelog, control, rules (utags: r0_7_22): update
	  debian packaging

2004-08-11 17:37  ds

	* swig/: Makefile.am (tags: v0_8_0, r0_7_22), ruby/Makefile.am: Fix
	  distcheck

2004-08-01 21:35  fmhess

	* comedi_calibrate/cb64.c (tags: r0_7_22): removed an unneeded
	  debug message

2004-08-01 20:10  fmhess

	* comedi_calibrate/: cb.c (tags: r0_7_22), cb64.c: added some error
	  messages, and update status of pcidas-1000

2004-08-01 20:09  fmhess

	* comedi_calibrate/cal_common.c (tags: r0_7_22): fix check for
	  presence of ao subdevice

2004-08-01 18:24  fmhess

	* etc/hotplug/usb/usbdux/: usbdux_firmware.asm,
	  usbdux_firmware.hex: updated usbdux firmware from Bernd Porr:

	  Firmware now only measures as many channels as are in the channel
	  list. If there's only one channel in the list we can manage to
	  measure within one microframe. This makes it possible to measure
	  with 8kHz max.  Added a counter. The counter is called every 2ms
	  from an FX2 timer inerrupt. Low priority so that measurements are
	  not disturbed.  The bulk transfers are now two times faster
	  (insn). Reading an A/D value or an DIO takes now only 2ms or
	  less. The trick is that the in endpoint is already filled when
	  the request is issued.  Fixed a bug in the FIFO resets.

	  Second counter did not count properly. That's fixed. Also found
	  two missing syncdelays.

2004-07-24 20:39  fmhess

	* testing/cmd_1.c (tags: r0_7_22): insert usleep() in loop

2004-07-24 17:27  fmhess

	* comedi_calibrate/ni.c: update status of 6014

2004-07-24 14:04  fmhess

	* doc/Makefile.am (tags: r0_7_22): fix building of drivers.sgml and
	  funcref.sgml when building out of tree

2004-07-24 13:03  fmhess

	* doc/Makefile.am: patch for out-of-tree builds from Caleb Tennis

2004-07-24 12:09  fmhess

	* testing/: cmd_1.c, comedi_test.h (tags: v0_8_0, r0_7_22): fix
	  internal trigger when testing write command, and fix test when
	  write command uses stop_src==TRIG_NONE instead of TRIG_COUNT

2004-07-24 11:47  fmhess

	* testing/mmap.c (tags: v0_8_0, r0_7_22): fix test_segfault() so it
	  works with 2.6 kernel signal handling behaviour

2004-07-14 07:42  fmhess

	* comedi_calibrate/ni.c: add entry for at-mio-64e-3

2004-06-29 20:28  fmhess

	* comedi_calibrate/results/pci-6034e (tags: r0_7_22): new results

2004-06-29 20:25  fmhess

	* comedi_calibrate/ni.c: updated pci-6034e to STATUS_DONE

2004-06-28 21:21  fmhess

	* comedi_calibrate/ni.c: add support for pci-6034e

2004-06-19 23:36  fmhess

	* swig/ruby/Makefile.am: use setup.rb for clean-local and
	  distclean-local

2004-06-19 22:37  fmhess

	* Makefile.am: make distcheck works now with automake 1.8

2004-06-19 21:45  fmhess

	* lib/data.c (tags: v0_8_0, r0_7_22): fix strict aliasing warning

2004-06-19 19:12  fmhess

	* Makefile.am, configure.ac: fix ruby prefix to work for distcheck

2004-06-19 15:55  fmhess

	* testing/mode0_read.c (tags: v0_8_0, r0_7_22): fix for compiler
	  warning about strict aliasing rules

2004-06-19 13:55  fmhess

	* swig/ruby/Makefile.am: added some files to EXTRA_DIST that were
	  left out of tarball

2004-06-19 11:25  fmhess

	* lib/Makefile.am (tags: r0_7_22): fixes for srcdir != biulddir

2004-06-19 11:24  fmhess

	* lib/dio.c (tags: r0_7_22): fix compiler warnings about strict
	  aliasing

2004-06-19 11:06  fmhess

	* swig/: python/Makefile.am, ruby/Makefile.am: fix compilation when
	  builddir != srcdir

2004-06-12 16:56  ds

	* configure.ac, swig/ruby/Makefile.am: distcheck fixes

2004-06-10 08:01  fmhess

	* comedi_calibrate/ni.c: fix eeprom address for 6713

2004-06-09 19:08  fmhess

	* comedi_calibrate/ni.c: add warning to 6711 calibration if driver
	  version might be too old

2004-06-09 19:01  fmhess

	* comedi_calibrate/ni.c: 6713 is completely failing

2004-06-07 20:20  fmhess

	* comedi_calibrate/ni.c: updated status of 6713

2004-06-05 12:29  fmhess

	* comedi_calibrate/results/pci-6014 (tags: r0_7_22): new results

2004-06-05 12:25  fmhess

	* comedi_calibrate/ni.c: actually, status for 6713 should still be
	  STATUS_GUESS

2004-06-05 12:21  fmhess

	* comedi_calibrate/ni.c: update pci-6713 status and add eeprom
	  address of reference voltage

2004-05-31 21:37  fmhess

	* comedi_calibrate/ni.c: 6014 seems to have ao fine offset caldacs,
	  instead of linearity

2004-05-31 21:26  fmhess

	* comedi_calibrate/ni.c: update daqcard-6036e status to STATUS_DONE

2004-05-31 21:26  fmhess

	* comedi_calibrate/results/DAQCard-6036E (tags: r0_7_22): new
	  results

2004-05-24 20:15  fmhess

	* comedi_calibrate/ni.c: pci-6014 support

2004-05-21 21:08  fmhess

	* comedi_calibrate/ni.c: added stub for pci-6014

2004-05-20 17:53  fmhess

	* comedi_calibrate/ni.c: fixes for DAQCard-6036E

2004-05-12 22:15  fmhess

	* comedi_calibrate/results/at-mio-16e-10 (tags: r0_7_22): new
	  results

2004-05-12 22:14  fmhess

	* comedi_calibrate/ni.c: update status of at-mio-16e-10

2004-05-11 21:08  fmhess

	* comedi_calibrate/ni.c: filling in missing caldacs for
	  at-mio-16e-10

2004-05-09 17:57  fmhess

	* comedi_calibrate/ni.c: fixes for at-mio-16e-10

2004-04-11 13:29  fmhess

	* comedi_calibrate/results/at-mio-16e-1 (tags: r0_7_22): new
	  calibration output

2004-04-03 21:22  fmhess

	* comedi_calibrate/ni.c: add support for ao linearity calibration
	  on at-mio-16e-1 and at-mio-16e-2

2004-03-28 21:19  fmhess

	* include/comedilib_scxi.h, scxi/scxi.c (utags: r0_7_22): scxi
	  convenience library patch from caleb tennis:

	  This latest patch changes the interface to three functions:

	   comedi_scxi_open
	   comedi_scxi_close
	   comedi_scxi_readwrite

	    With these three functions one can properly interface to all
	  SCXI devices.  If
	    you like the latest patch (3/23/04 07:14), please apply and
	  close this bug.

	     Next up will be adding some generic analog and digital IO
	  functions.

2004-03-28 20:43  fmhess

	* etc/hotplug/usb/usbdux/usbdux (tags: v0_8_0, r0_7_22): usbdux
	  update from bernd porr: The new hotplug script uses
	  comedi/usbdux.c for firmware upload and not fxload any more.
	  fxload is too unreliable and seems to be missing or different
	  among different distros. All users of usbdux boards report
	  problems which are fxload related. The new hotplug script simply
	  uses comedi_config -i firmware.hex. This fix also removes
	  problems with the usbdevfs (race in 2.6, sleep, ...). The
	  usbdevfs is no longer needed.

2004-03-28 20:39  fmhess

	* swig/ruby/: README, demo/cmd, demo/common.rb, demo/inp,
	  demo/outp, lib/comedi.rb (utags: r0_7_22, v0_8_0): update to ruby
	  binding from steven jenkins:

	  Better exception handling. More consistent handling of return
	  values. Updated documentation.

2004-03-28 20:34  fmhess

	* comedi_calibrate/: comedi_calibrate.c (tags: r0_7_22), ni.c:
	  added daqcard 6036e support

2004-03-24 16:26  fmhess

	* comedi_calibrate/results/pci-6711 (tags: r0_7_22): new
	  calibration results

2004-03-11 18:29  fmhess

	* comedi_calibrate/ni.c: ni pci-6711 calibration works now

2004-03-07 17:21  fmhess

	* comedi_calibrate/ni.c: downgrade status of 67xx boards to
	  STATUS_UNKNOWN, since they don't work

2004-03-06 17:13  fmhess

	* swig/ruby/: README, demo/cmd, lib/comedi.rb: patch from Steven
	  Jenkins  -------

	  The attached patch updates files in comedilib/swig/ruby.
	  lib/comedi.rb is updated to raise Ruby exceptions as indicated by
	  the comedilib API documentation. README and demo/cmd are updated
	  accordingly.

2004-03-02 22:14  fmhess

	* m4/as-ac-expand.m4 (tags: v0_8_0, r0_7_22): fix equality test

2004-02-29 11:52  fmhess

	* Makefile.am, configure.ac, include/Makefile.am (tags: v0_8_0,
	  r0_7_22), include/comedilib_scxi.h, scxi/Makefile.am (tags:
	  r0_7_22), scxi/scxi.c: beginnings of scxi convenience library
	  from Caleb Tennis

2004-02-29 11:49  fmhess

	* demo/info.c (tags: r0_7_22): add serial dio subdevice type

2004-02-24 08:09  fmhess

	* comedi_calibrate/ni.c: guess reference eeprom address again

2004-02-23 20:20  fmhess

	* comedi_calibrate/results/pci-6033e (tags: r0_7_22): new results

2004-02-23 20:16  fmhess

	* comedi_calibrate/ni.c: fix eeprom address for voltage reference
	  on 6033e

2004-02-21 09:34  fmhess

	* comedi_calibrate/ni.c: make sure ground isn't out of range during
	  unipolar gain calibration for 6033e

2004-02-17 19:14  fmhess

	* include/comedi.h (tags: r0_7_22): sync with comedi

2004-02-16 09:30  fmhess

	* comedi_calibrate/ni.c: enabling support for pci-6033e

2004-02-16 09:02  fmhess

	* etc/hotplug/usb/usbdux/usbdux: Update from Bernd Porr. Sleeps
	  only if the file is not there.

2004-02-15 17:24  fmhess

	* comedi_calibrate/: cal_common.c, calib.h (tags: r0_7_22),
	  comedi_calibrate.c, ni.c: add support for 67xx boards.  Doesn't
	  work yet, due to unknown reference of internal calibration adc.
	  On my board, it's input seems to be about 2% off from +-10V.

2004-02-07 17:20  fmhess

	* etc/hotplug/usb/usbdux/: usbdux_firmware.asm,
	  usbdux_firmware.hex: usbdux firmware update from Bernd Porr:
	  Bugfix version of the firmware. When running ./cmd and
	  ./ao_waveform at the same time I got CRC errors on the USB.
	  Reason: some registers in the FX2 need a syncdelay. After a write
	  to a register no other write is allowed to any other register for
	  a certain time. This is called "Syncdelay". Introduced syncdelays
	  for all EP registers. Now the CRC errors are gone.  Another
	  bugfix: the byte for the CPUCS register was wrong (shifted one
	  bit to the left). This resulted in undefined processor speed. The
	  speed was chosen just by chance at power up (12Mhz,24Mhz,48Mhz).

2004-02-07 16:42  fmhess

	* etc/hotplug/usb/usbdux/usbdux: patch form Bernd Porr: added a
	  "sleep 1" just before fxload to eliminate race condition betwwen
	  hotplug and usbdevfs in the preemptive 2.6 kernel

2004-01-31 17:19  fmhess

	* include/comedi.h: sync with comedi

2004-01-31 16:57  fmhess

	* etc/hotplug/usb/usbdux/: usbdux_firmware.asm,
	  usbdux_firmware.hex: update for usbdux driver form Bernd Porr who
	  says:

	  Had to change the USB 2.0 transfer protocol from IRQ transfer to
	  ISO transfer.  Reason: IRQ transfer is still not stable
	  (2.4/2.6). However, ISO transfer has been rewritten in the kernel
	  and works (just now in 2.6 but will be backported sooner or
	  later)! I supply new firmware and a new version of the driver
	  which now uses ISO transfer throughout (1.1 / 2.0).

2004-01-18 16:35  fmhess

	* doc/funcref (tags: r0_7_22): added description of
	  comedi_command_test() return values

2004-01-18 16:35  fmhess

	* doc/other.sgml (tags: r0_7_22): fixed typo

2004-01-18 15:26  fmhess

	* swig/comedi.i (tags: r0_7_22): don't make comedi_command arg
	  INOUT

2004-01-17 15:23  fmhess

	* configure.ac: fix check for ruby.h

2004-01-17 15:12  fmhess

	* configure.ac: add check for ruby header

2004-01-17 14:39  fmhess

	* configure.ac: added configure options for disabling python and
	  ruby bindings

2004-01-17 14:18  fmhess

	* swig/ruby/Makefile.am: clean up object files

2004-01-17 14:17  fmhess

	* swig/ruby/README: update README to reflect automake support for
	  compilation/installation

2004-01-17 14:08  fmhess

	* configure.ac, swig/ruby/Makefile.am: more autoconf support for
	  ruby binding

2004-01-17 14:08  fmhess

	* autogen.sh: pass arguments to configure

2004-01-17 12:11  fmhess

	* swig/ruby/Makefile.am: start of automake support for ruby
	  extension

2004-01-17 11:33  fmhess

	* swig/ruby/: README, setup.rb (tags: v0_8_0, r0_7_22),
	  syntax_sugar, demo/cmd, demo/common.rb, examples/cmd,
	  examples/common, ext/MANIFEST (tags: v0_8_0, r0_7_22),
	  ext/extconf.rb (tags: r0_7_22), lib/comedi.rb: ruby binding and
	  example from Steven Jenkins.	I still need to tweak the Makefiles
	  a bit to integrate it properly

2004-01-12 17:41  fmhess

	* swig/comedi.i: include typemaps.i

2004-01-11 20:38  fmhess

	* swig/comedi.i: ruby fix from steven jenkins

2004-01-11 19:03  fmhess

	* doc/Makefile.am: fix problem with html directory getting remade
	  every time (at least with automake1.8)

2004-01-11 18:39  fmhess

	* m4/: as-ac-expand.m4, as-compiler-flag.m4 (tags: v0_8_0,
	  r0_7_22), as-libtool.m4 (tags: r0_7_22), as-version.m4 (tags:
	  v0_8_0, r0_7_22): added some m4 quoting to get rid of automake1.8
	  warnings

2004-01-11 18:16  fmhess

	* swig/python/README.txt (tags: v0_8_0, r0_7_22): add some comments
	  on obsolete sections

2004-01-11 18:14  fmhess

	* swig/python/README.txt: restore README.txt that got lost when I
	  moved the python directory

2004-01-11 18:04  fmhess

	* swig/comedi.i: swig deprecated BOTH in favor of INOUT

2004-01-07 22:10  fmhess

	* configure.ac, swig/python/Makefile.am, swig/ruby/Makefile.am:
	  make cvs checkout compilable by people without swig

2004-01-04 12:07  fmhess

	* swig/python/Makefile.am: fix typo

2004-01-04 11:56  fmhess

	* Makefile.am, configure.ac, python/Makefile.am, python/README.txt,
	  python/comedi.i, python/comedi.py, python/comedi_wrap.c,
	  python/comedi_wrap.doc, python/setup.py, python/test_comedi.py,
	  swig/Makefile.am, swig/comedi.i, swig/python/Makefile.am,
	  swig/python/comedi.py (tags: r0_7_22),
	  swig/python/comedi_wrap.doc (tags: v0_8_0, r0_7_22),
	  swig/python/setup.py (tags: v0_8_0, r0_7_22),
	  swig/python/test_comedi.py (tags: v0_8_0, r0_7_22),
	  swig/ruby/Makefile.am, swig/ruby/syntax_sugar,
	  swig/ruby/examples/cmd, swig/ruby/examples/common: moved SWIG
	  code from python directory to new swig directory.  Added
	  beginnings of support for ruby swig binding

2004-01-04 11:06  fmhess

	* doc/: Makefile.am, html_targets, man_targets: html_targets and
	  man_targets not working out so hot

2004-01-01 20:16  fmhess

	* demo/ao_waveform.c (tags: r0_7_22): doing a retry for the preload
	  write is useless, since the command hasn't started yet.  Print a
	  useful error message and exit instead.

2004-01-01 19:06  fmhess

	* demo/ao_waveform.c: made BUF_LEN larger, so boards with huge ao
	  fifos (ni 67xx) don't underrun when starting up.

2003-12-24 11:09  fmhess

	* doc/Makefile.am: try to keep html_targets and man_targets
	  up-to-date as automatically as possible

2003-12-24 10:46  fmhess

	* doc/: Makefile.am, html_targets, man_targets: use files to keep
	  track of html and man targets

2003-12-24 10:40  fmhess

	* lib/Makefile.am: fix possibility of incorrect bison invocation,
	  when make tries to make calib_yacc.h before calib_yacc.c

2003-12-24 10:00  fmhess

	* doc/Makefile.am: put gif back in EXTRA_DIST

2003-12-23 20:48  fmhess

	* configure.ac, doc/Makefile.am, doc/acq-seq.gif (tags: v0_8_0,
	  r0_7_22), doc/html/Makefile.am, doc/html/acq-seq.gif,
	  doc/man/Makefile.am: provide prebuilt docs in distribution
	  tarballs

2003-12-21 13:07  fmhess

	* doc/: comedilib.sgml (tags: r0_7_22), driverwriting.sgml (tags:
	  r0_7_22), install.sgml (tags: r0_7_22), other.sgml, tutorial.sgml
	  (tags: r0_7_22): added some missing end tags, noted by Steven
	  Jenkins

2003-12-21 12:30  fmhess

	* etc/hotplug/usb/usbdux/usbdux: update from bernd porr to use
	  fxload to load firmware

2003-12-02 21:43  fmhess

	* doc/: Makefile.am, html/Makefile.am, man/Makefile.am: make
	  dependency handling work for subdirs

2003-12-02 21:43  fmhess

	* doc/funcref: trying to improve calibration docs

2003-12-02 20:47  fmhess

	* man/comedi_calibrate.8 (tags: r0_7_22): trying to improve
	  calibration docs

2003-11-30 10:41  fmhess

	* configure.ac: add support for usb scripts/firmware

2003-11-30 10:41  fmhess

	* etc/: Makefile.am (tags: r0_7_22), hotplug/Makefile.am (tags:
	  v0_8_0, r0_7_22), hotplug/usb/Makefile.am (tags: r0_7_22),
	  hotplug/usb/usbdux/Makefile.am (tags: r0_7_22),
	  hotplug/usb/usbdux/Makefile_asm (tags: v0_8_0, r0_7_22),
	  hotplug/usb/usbdux/README, hotplug/usb/usbdux/fx2-include.asm,
	  hotplug/usb/usbdux/usbdux,
	  hotplug/usb/usbdux/usbdux_firmware.asm,
	  hotplug/usb/usbdux/usbdux_firmware.hex,
	  hotplug/usb/usbdux/usbdux_firmware.lst: comedilib support for new
	  usbdux driver

2003-11-20 13:40  ds

	* testing/results/: Measurement_Computing_pcidas-6023, pci-6023e
	  (tags: v0_8_0, r0_7_22), pci-6713 (tags: v0_8_0, r0_7_22),
	  pci-das6023 (tags: v0_8_0, r0_7_22), pci-dio-32hs (tags: v0_8_0,
	  r0_7_22): new files

2003-11-17 15:13  ds

	* README.CVS (tags: r0_7_22): Add notes about compiling from CVS

2003-11-15 09:35  fmhess

	* INSTALL (tags: v0_8_0, r0_7_22): [no log message]

2003-10-23 20:56  fmhess

	* etc/pcmcia/comedi.conf (tags: r0_7_22): add daqcard-6036e

2003-10-13 15:22  fmhess

	* comedi_calibrate/ni.c: fix coarse/fine ai pregain offset caldacs
	  for pci-6025e

2003-10-13 14:52  fmhess

	* comedi_calibrate/Makefile.am (tags: r0_7_22): fix path when
	  creating calibration directory during install, bug noted by
	  Norbert Schmidt.

2003-10-09 10:59  fmhess

	* Makefile.am: add ACLOCAL_AMFLAGS so automake calls aclocal
	  correctly when necessary

2003-09-02 23:54  fmhess

	* doc/: man/Makefile.am, html/Makefile.am: hack so we don't rebuild
	  docs with every make

2003-09-02 23:49  fmhess

	* doc/funcref: typo

2003-09-02 22:59  fmhess

	* lib/Makefile.am: added a -release option for libtool, so it names
	  the library with the version instead of libcomedi-0.0.0.so

2003-09-02 22:18  fmhess

	* doc/glossary.sgml (tags: r0_7_22): add id to glossary so it
	  doesn't produce a randomly named html file

2003-08-30 00:21  ds

	* lib/calib.c (tags: r0_7_22): localstatedir should be /var, thus
	  we need append a lib/ here

2003-08-29 22:08  fmhess

	* comedi_calibrate/ni.c: coarse and fine pregain offsets were
	  switched for pci-6024e

2003-08-22 23:26  fmhess

	* comedi_calibrate/ni.c: add stub for daqcard-6036e

2003-08-21 12:10  fmhess

	* lib/Makefile.am: add calib_yacc.h to BUILT_SOURCES

2003-08-21 11:11  fmhess

	* doc/comedilib.sgml: use 'ue' instead of 'u' for uumlat

2003-08-16 19:18  ds

	* comedi_calibrate/save_cal.c, demo/sv.c (utags: r0_7_21, r0_7_22):
	  fix warnings

2003-08-16 19:11  ds

	* configure.ac (tags: r0_7_21): version bump

2003-08-16 18:55  ds

	* configure.ac: force aux dir

2003-08-16 18:19  ds

	* etc/: Makefile.am, pcmcia/Makefile.am (tags: v0_8_0, r0_7_22)
	  (utags: r0_7_21): new makefiles

2003-08-16 18:18  ds

	* doc/Makefile.am (tags: r0_7_21): rerefactor Makefile.am

2003-08-16 18:17  ds

	* Makefile.am (tags: r0_7_21), configure.ac: add Makefiles into
	  etc/

2003-08-16 18:14  ds

	* debian/: libcomedi-dev.files (tags: r0_7_22), libcomedi0.files
	  (tags: r0_7_22), rules (utags: r0_7_21): install a few more files

2003-08-15 20:51  ds

	* etc/rel_comedilib: not needed

2003-08-15 20:43  ds

	* debian/libcomedi-dev.files: add files

2003-08-15 20:42  ds

	* debian/: changelog (tags: r0_7_21), control (tags: r0_7_21),
	  libcomedi0.postinst (tags: r0_7_22, r0_7_21), libcomedi0.postrm
	  (tags: r0_7_22, r0_7_21), libcomedi0.shlibs (tags: r0_7_22,
	  r0_7_21), rules: updates from debian package

2003-08-15 20:41  ds

	* debian/copyright (tags: r0_7_22, r0_7_21): update

2003-08-15 20:20  ds

	* doc/Makefile.am: don't dist acq-seg.gif

2003-08-15 20:20  ds

	* doc/acq-seq.gif: moved to html

2003-08-15 20:20  ds

	* doc/: html/Makefile.am, html/acq-seq.gif, Makefile.am,
	  comedilib.sgml (tags: r0_7_21), man/Makefile.am (tags: r0_7_21):
	  refactor build system for docs

2003-08-15 20:18  ds

	* lib/calib.c (tags: r0_7_21): calibrations is installed in
	  $localstatedir

2003-08-15 20:18  ds

	* lib/Makefile.am (tags: r0_7_21): dist generated lex and yacc
	  sources

2003-08-15 20:16  ds

	* debian/control: remove flex and bison from build deps

2003-08-15 20:15  ds

	* comedi_calibrate/Makefile.am (tags: r0_7_21): Install
	  calibrations/ to localstatedir

2003-08-15 20:15  ds

	* Makefile.am: remove include from EXTRA_DIST

2003-08-15 20:15  ds

	* configure.ac: update version.  switch back to using docbook2xxx,
	  and test for each one.  Jade/jw doesn't really have a way to test
	  for backends.

2003-08-15 17:13  fmhess

	* comedi_calibrate/comedi_calibrate.c: ignore externally referenced
	  ranges in get_bipolar_lowgain(), etc.

2003-08-11 16:05  fmhess

	* doc/funcref (tags: r0_7_21): marked sv_ functions as deprecated

2003-08-08 14:41  fmhess

	* doc/Makefile.am: ignore install errors for manpages

2003-08-08 13:38  fmhess

	* comedi_calibrate/comedi_calibrate.c (tags: r0_7_21): it's https
	  instead of http

2003-08-01 23:58  fmhess

	* doc/intro.sgml (tags: r0_7_22, r0_7_21): added missing </para>

2003-08-01 23:44  fmhess

	* doc/mkref (tags: v0_8_0, r0_7_22, r0_7_21): fixed closing of
	  </refentry>

2003-08-01 23:20  fmhess

	* comedi_calibrate/ni.c (tags: r0_7_21): added support for fine
	  unipolar offset caldac, especially for pci-6042e.  updated
	  pci-6052e status to STATUS_DONE (unipolar analog output linearity
	  calibration works correctly now).

2003-08-01 23:18  fmhess

	* comedi_calibrate/cal_common.c (tags: r0_7_21): moved a few lines
	  around for clairity

2003-08-01 23:17  fmhess

	* comedi_calibrate/results/pci-6052e (tags: r0_7_22, r0_7_21):
	  updated results using debug caldacs

2003-07-23 16:00  fmhess

	* comedi_calibrate/: cal_common.c, ni.c: tweaks, and always reset
	  fine caldacs before adjusting corresponding coarse caldac

2003-07-21 15:23  fmhess

	* comedi_calibrate/: cal_common.c, ni.c: updated pci-6031e status
	  to STATUS_DONE, and made pegs happen only when caldacs are reset.

2003-07-21 15:22  fmhess

	* comedi_calibrate/results/pci-6031e (tags: r0_7_22, r0_7_21):
	  updated results

2003-07-20 01:10  fmhess

	* comedi_calibrate/: cal_common.c, calib.h (tags: r0_7_21), ni.c:
	  do seperate unipolar ai calibration on ni boards that need it

2003-07-19 23:20  fmhess

	* comedi_calibrate/save_cal.c: don't save multiple values for the
	  same caldac channel

2003-07-19 18:48  fmhess

	* comedi_calibrate/ni.c: add pci-6031e support.

2003-07-19 18:12  fmhess

	* comedi_calibrate/ni.c: alphabetize boards and add more
	  STATUS_UNKNOWN board types

2003-07-19 18:09  fmhess

	* comedi_calibrate/results/pci-6031e: new results

2003-07-19 15:16  fmhess

	* comedi_calibrate/comedi_calibrate.c: tell user when command line
	  options are being forced on or off

2003-07-16 12:45  fmhess

	* README (tags: r0_7_22, r0_7_21): correct url for cvs instructions

2003-07-16 12:38  fmhess

	* comedi_config/comedi_config.c (tags: r0_7_22, r0_7_21): fix use
	  of COMEDI_DEVCONF_AUX_DATA* options (from Bernd Porr)

2003-07-16 12:26  fmhess

	* include/comedi.h (tags: r0_7_21): sync with comedi

2003-07-15 11:58  fmhess

	* doc/Makefile.am: refined handling of built directories

2003-07-11 21:32  fmhess

	* comedi_calibrate/ni.c: incremented n_observables for new
	  observables i added

2003-07-11 19:31  fmhess

	* comedi_calibrate/ni.c: tweaked bipolar ao targets

2003-07-11 19:25  fmhess

	* doc/Makefile.am: ignore errors making manpages again

2003-07-11 19:07  fmhess

	* doc/Makefile.am: added symlink for figure

2003-07-11 18:53  fmhess

	* doc/: driverwriting.sgml (tags: r0_7_21), install.sgml (tags:
	  r0_7_21), intro.sgml, other.sgml (tags: r0_7_21), reference.sgml
	  (tags: r0_7_22, r0_7_21), tutorial.sgml (tags: r0_7_21): replaced
	  all &ldquo; and &rdquo; with <quote> and </quote>

2003-07-10 18:07  fmhess

	* comedi_calibrate/ni.c: fix 6052 calibration to use ad8804_debug
	  caldacs

2003-07-10 17:55  fmhess

	* comedi_calibrate/ni.c: fixing bipolar ao linearity calibration,
	  lowered 6052 status since I'm pretty sure the caldac type is
	  wrong in the driver.

2003-07-09 16:13  fmhess

	* Makefile.am, comedi_calibrate/Makefile.am, etc/pcmcia/comedi
	  (tags: v0_8_0, r0_7_22, r0_7_21): added etc/ to EXTRA_DIST, moved
	  creation of /etc/comedi/calibrations to comedi_calibrate
	  subdirectory's makefile

2003-07-09 15:49  fmhess

	* doc/Makefile.am: got rid of advanced.sgml

2003-07-09 15:03  fmhess

	* m4/as-libtool.m4 (tags: r0_7_21): use AC_PROG_LIBTOOL instead of
	  old name AM_PROG_LIBTOOL

2003-07-08 22:46  fmhess

	* doc/advanced.sgml: undoing regression

2003-07-08 19:51  fmhess

	* doc/: install.sgml, other.sgml, reference.sgml: fix regressions,
	  remove obsolete description of isapnp support

2003-07-08 19:02  fmhess

	* doc/comedilib.sgml: fixed a regression and added some copyright
	  notices

2003-07-08 18:58  fmhess

	* doc/intro.sgml: fix figure

2003-07-08 18:39  fmhess

	* doc/funcref: undoing funcref regressions

2003-07-08 18:13  fmhess

	* doc/Makefile.am: make install-data-local target conditional, and
	  use $(INSTALL_DATA) instead of $(INSTALL)

2003-07-07 18:48  ds

	* doc/mkref: escape quotes in perl string

2003-07-07 18:44  ds

	* doc/: Makefile.am, acq-seq.gif: add figure

2003-07-07 18:34  ds

	* doc/: advanced.sgml, comedilib.sgml, driverwriting.sgml, funcref,
	  glossary.sgml (tags: r0_7_21), install.sgml, intro.sgml, mkref,
	  other.sgml, reference.sgml, tutorial.sgml: Much fixage and new
	  text from Herman.

2003-07-05 20:11  fmhess

	* configure.ac, lib/Makefile.am: added detection of flex/bison to
	  configure

2003-07-03 17:51  fmhess

	* etc/pcmcia/comedi.conf (tags: r0_7_21): daqcard-1200 is now
	  supported by ni_labpc_cs.o driver

2003-07-03 12:17  fmhess

	* Makefile.am: added creation of /etc/comedi/calibrations directory
	  during install

2003-07-03 11:51  fmhess

	* comedi_calibrate/ni.c: added reference eeprom address for
	  pci-6036e

2003-07-02 14:35  fmhess

	* comedi_calibrate/ni.c: pci-6036e works

2003-07-02 14:35  fmhess

	* comedi_calibrate/save_cal.c: added a perror()

2003-07-02 14:26  fmhess

	* comedi_calibrate/results/pci-6036e (tags: r0_7_22, r0_7_21): new
	  results with ad8804_debug caldac

2003-07-02 14:04  fmhess

	* comedi_calibrate/ni.c: fix out-of-range problems with ao unipolar
	  linearity calibration

2003-07-01 17:14  fmhess

	* comedi_calibrate/ni.c: fix analog output targets

2003-07-01 17:01  fmhess

	* comedi_calibrate/comedi_calibrate.c: fixed a DPRINT

2003-07-01 16:57  fmhess

	* comedi_calibrate/ni.c: fixes for pci-6071e

2003-07-01 16:56  fmhess

	* comedi_calibrate/results/pci-6071e (tags: r0_7_22, r0_7_21): new
	  results with ad8804_debug caldac in driver

2003-06-30 11:25  fmhess

	* comedi_calibrate/ni.c: added adc_pregain_offset_fine for 6036e

2003-06-27 10:26  fmhess

	* comedi_calibrate/ni.c: first pass at pci-6036e calibration
	  support

2003-06-26 23:23  fmhess

	* comedi_calibrate/ni.c: added pci-6036e entry

2003-06-26 23:15  fmhess

	* comedi_calibrate/: cb.c, cb64.c (utags: r0_7_21): trivial changes
	  of 1 to 1.0

2003-06-17 20:06  fmhess

	* comedi_calibrate/comedi_calibrate.c: fix possible segfault

2003-06-17 19:57  fmhess

	* comedi_calibrate/: cal_common.c, calib.h, cb.c, cb64.c,
	  comedi_calibrate.c: make it loop through gain/offset calibrations
	  until the readings are within specified tolerance of targets.

2003-06-16 20:44  fmhess

	* comedi_calibrate/cb.c: updated comment

2003-06-16 20:05  fmhess

	* comedi_calibrate/: cal_common.c, calib.h, cb.c: Disable attempt
	  to do unipolar postgain calibration on measurement computing
	  pci-das1602/16 boards, since it is failing badly.

2003-06-14 12:04  fmhess

	* comedi_calibrate/cal_common.c: make unipolar gain calibration
	  work a little better

2003-06-13 17:49  fmhess

	* comedi_calibrate/: cal_common.c, cb.c: use bipolar range when
	  pegging pregain offset before unipolar postgain calibration

2003-06-13 14:03  fmhess

	* comedi_calibrate/cal_common.c: remove duplicate lines

2003-06-13 13:15  fmhess

	* comedi_calibrate/cal_common.c: tweak to unipolar postgain offset
	  routine

2003-06-13 13:13  fmhess

	* comedi_calibrate/: cb.c,
	  results/measurement-computing-pci-das1602-16 (tags: r0_7_22,
	  r0_7_21): new results for measurement computing pci-das1602/16

2003-06-12 15:57  fmhess

	* comedi_calibrate/comedi_calibrate.c: fix problems with set_target
	  setting the target to NaN on unipolar ao ranges

2003-06-06 14:57  fmhess

	* comedi_calibrate/cal_common.c: fix swapping of unipolar and
	  bipolar postgain offsets during calibration

2003-06-06 13:50  ds

	* m4/as-compiler-flag.m4 (tags: r0_7_21): Macro from gstreamer

2003-06-06 10:59  fmhess

	* comedi_calibrate/: cal_common.c, calib.h, comedi_calibrate.c:
	  make sure we aren't out-of-range when doing unipolar postgain
	  offset

2003-06-06 10:07  fmhess

	* configure.ac, comedi_calibrate/comedi_calibrate.c: added some m4
	  quoting (fixes docbook warning message with comma), added warning
	  message when python binding will not be compiled.

2003-06-06 01:01  fmhess

	* doc/funcref: fixed return value for comedi_dio_config() entry

2003-06-05 18:17  ds

	* python/Makefile.am (tags: r0_7_21): Conditional compile.  Use
	  compiler flags found by autoconf

2003-06-05 18:16  ds

	* doc/Makefile.am: Add conditional compilation.  Use docbook found
	  by autoconf.

2003-06-05 18:15  ds

	* debian/: changelog, control, libcomedi-dev.files,
	  libcomedi0.files, python-comedilib.files (tags: r0_7_22,
	  r0_7_21): move files around.	fix build depends.

2003-06-05 18:13  ds

	* configure.ac: Conditionally find python and docbook.	Check
	  compiler flags.

2003-06-05 18:12  ds

	* comedilib.spec.in (tags: v0_8_0, r0_7_22, r0_7_21): Fix to
	  actually make it work.

2003-06-05 00:22  fmhess

	* python/Makefile.am: gcc 2.95 doesn't understand
	  -Wno-unused-function, replaced with -Wno-unused

2003-06-04 16:28  ds

	* python/Makefile.am: add some compiler flags to make quieter

2003-06-04 16:27  ds

	* configure.ac: remove check for python >= 2.2

2003-06-04 16:00  ds

	* python/Makefile.am: Use autoconf-located includes for python

2003-06-04 00:23  ds

	* python/Makefile.am: Fix name of comedi module

2003-06-04 00:23  ds

	* debian/changelog: new snapshot

2003-06-04 00:15  ds

	* doc/funcref: Change return value of comedi_data_{read|write}()

2003-06-03 23:38  ds

	* debian/: libcomedi0.files, python-comedilib.files: move files to
	  python-comedi

2003-06-03 23:36  ds

	* Makefile.am, comedilib.spec.in, configure.ac: autogenerate spec
	  file

2003-06-03 23:34  ds

	* comedilib.spec, comedilib.spec.in: make autogenerated

2003-06-03 23:33  ds

	* comedilib.spec: hacking.  Don't know if this works :)

2003-06-03 23:04  ds

	* autogen.sh (tags: r0_7_21): learn how to write sh correctly

2003-06-03 23:03  ds

	* m4/am-check-python-headers.m4 (tags: v0_8_0, r0_7_22, r0_7_21):
	  stolen from gst-python

2003-06-03 23:02  ds

	* autogen.sh: touch some missing files

2003-06-03 22:59  ds

	* acinclude.m4: er, don't really want to use acinclude.m4

2003-06-03 22:58  ds

	* acinclude.m4: acinclude.m4 stolen from gst-python

2003-06-03 22:55  ds

	* include/Makefile.am (tags: r0_7_21): need to dist these files.

2003-06-03 22:54  ds

	* demo/python/: cmd.py, mmap.py (utags: r0_7_21, r0_7_22, v0_8_0):
	  add #! line

2003-06-03 22:53  ds

	* demo/python/: README (tags: v0_8_0, r0_7_22, r0_7_21), cmd.py,
	  info.py (tags: v0_8_0, r0_7_22, r0_7_21), mmap.py: Add python
	  examples from Luc Lefebvre <luc.lefebvre@mcgill.ca>

2003-06-03 22:49  ds

	* python/: comedi.py, comedi_wrap.c (utags: r0_7_21): regenerate

2003-06-03 22:48  ds

	* doc/drivers.txt (tags: r0_7_22, r0_7_21): update

2003-06-03 22:48  ds

	* debian/libcomedi0.conffiles: not needed with new debhelper

2003-06-03 22:47  ds

	* debian/: libcomedi-dev.files, libcomedi0.files: install in a more
	  debhelper-friendly way

2003-06-03 22:47  ds

	* debian/: changelog, control, rules: packaging fixes

2003-06-03 22:47  ds

	* comedi_calibrate/comedi_calibrate.c: tell people to submit a bug
	  report

2003-06-03 22:46  ds

	* Config: no longer used

2003-06-03 22:43  ds

	* rpm/: comedilib.patch, comedilib.spec: moved to ..

2003-06-03 22:43  ds

	* comedilib.spec: move out of rpm directory

2003-06-03 22:42  ds

	* Makefile.am, configure.ac, doc/Makefile.am, python/Makefile.am,
	  python/comedi.i (tags: r0_7_21), python/comedi_wrap.c,
	  python/setup.py (tags: r0_7_21): Fixes to make python and docs
	  build correctly

2003-06-03 19:57  ds

	* python/: Makefile.am, Makefile.pre.in, README.txt (tags:
	  r0_7_21), Setup.in, comedi.i, comedi.py, comedi_wrap.c,
	  comedi_wrap.doc (tags: r0_7_21), compy.c, sample.py, sample1.py,
	  setup.py, test_comedi.py (tags: r0_7_21): Rewrite of python
	  wrappers based on swig

2003-06-01 14:58  fmhess

	* doc/: Makefile.am, advanced.sgml, install.sgml: removed obsolete
	  advanced.sgml.  Got rid of references to hard-coded comedi_config
	  paths

2003-06-01 14:44  fmhess

	* man/comedi_config.8 (tags: r0_7_22, r0_7_21): removed assumption
	  that comedi_config is in /usr/sbin

2003-06-01 14:38  fmhess

	* etc/pcmcia/comedi: fix script for different common comedi_config
	  paths

2003-05-31 12:59  fmhess

	* comedi_calibrate/cb.c: move some warning messages so they will
	  actually get seen

2003-05-31 12:58  fmhess

	* lib/calib.c: be a little more careful about fixing up calibration
	  file path, although it doesn't make any practical difference

2003-05-28 17:22  fmhess

	* comedi_calibrate/cb.c: catch some errors

2003-05-28 17:18  fmhess

	* lib/calib.c: fix default calibration file path for boards with
	  '/' in name

2003-05-28 14:55  fmhess

	* lib/calib_yacc.y (tags: r0_7_22, r0_7_21): replace return with
	  YYABORT

2003-05-27 15:05  ds

	* comedi_calibrate/results/pci-6071e: update.

2003-05-25 17:20  fmhess

	* comedi_calibrate/: cb64.c, comedi_calibrate.c: added support for
	  new cb_pcidas64 board types

2003-05-25 17:11  fmhess

	* comedi_calibrate/: cal_common.c, calib.h, comedi_calibrate.c,
	  ni.c: made sv order adjustable

2003-05-25 12:20  fmhess

	* comedi_calibrate/comedi_calibrate.c: fix statistics of
	  new_sv_measure, and reduce number of steps in check_gain_chan_x

2003-05-24 17:15  fmhess

	* demo/receiver.c (tags: r0_7_22, r0_7_21): use CR_EDGE and
	  CR_INVERT constants instead of magic numbers

2003-05-22 17:40  fmhess

	* comedi_calibrate/results/pci-6110 (tags: r0_7_22, r0_7_21): new
	  results

2003-05-22 16:49  fmhess

	* comedi_calibrate/comedi_calibrate.c: make verbosity options work
	  again

2003-05-22 16:42  fmhess

	* comedi_calibrate/ni.c: trivial tweak

2003-05-22 16:30  fmhess

	* comedi_calibrate/comedi_calibrate.c: increased sv->order for 611x

2003-05-22 12:13  fmhess

	* comedi_calibrate/ni.c: still trying to get 611x ai to calibrate
	  well, trying to increase settling time now.

2003-05-22 12:12  fmhess

	* comedi_calibrate/comedi_calibrate.c: cleanup some redundant
	  initialization of sv stuff

2003-05-21 14:44  fmhess

	* comedi_calibrate/ni.c: fix analog out ch 1 calibration, and
	  calulation of variable ai reference source for 611x

2003-05-21 13:52  fmhess

	* comedi_calibrate/: comedi_calibrate.c, save_cal.c: added some
	  warning messages when binary calibrations set caldacs to max/min
	  values

2003-05-21 13:16  fmhess

	* comedi_calibrate/calib.h: increase N_OBSERVABLES even more for
	  611x

2003-05-20 11:09  fmhess

	* comedi_calibrate/ni.c: fix assignments that should have been
	  equality tests

2003-05-19 19:31  fmhess

	* comedi_config/Makefile.am (tags: v0_8_0, r0_7_22, r0_7_21): made
	  comedi_config install into sbin instead of bin subdirectory

2003-05-17 20:26  fmhess

	* lib/: buffer.c (tags: r0_7_22, r0_7_21), calib.c, calib_yacc.y,
	  cmd.c (tags: r0_7_22, r0_7_21), comedi.c (tags: v0_8_0, r0_7_22,
	  r0_7_21), data.c (tags: r0_7_21), dio.c (tags: r0_7_21), error.c
	  (tags: v0_8_0, r0_7_22, r0_7_21), get.c (tags: r0_7_22, r0_7_21),
	  range.c (tags: v0_8_0, r0_7_22, r0_7_21), sv.c (tags: v0_8_0,
	  r0_7_22, r0_7_21), timed.c (tags: v0_8_0, r0_7_22, r0_7_21),
	  timer.c (tags: v0_8_0, r0_7_22, r0_7_21), version_script (tags:
	  r0_7_22, r0_7_21): trying to fix undefined symbol problems people
	  are having

2003-05-16 17:15  fmhess

	* lib/Makefile.am: added -D_REENTRANT to library cflags

2003-05-16 15:41  fmhess

	* INSTALL (tags: r0_7_21): updated for autoconf stuff

2003-05-08 20:04  fmhess

	* comedi_calibrate/ni_labpc.c (tags: r0_7_22, r0_7_21): added some
	  DPRINT's to ni_labpc calibration so there is some indication it
	  is doing something

2003-05-08 20:00  fmhess

	* lib/calib.c: added driver name to default calibration file path

2003-05-08 19:57  fmhess

	* comedi_calibrate/: Makefile.am, calib.h, comedi_calibrate.c,
	  ni.c, ni_labpc.c: added ni_labpc support

2003-05-07 20:35  fmhess

	* doc/funcref: added entries for additional calibration functions

2003-05-07 20:34  fmhess

	* doc/Makefile.am: fix broken dependencies, and man page generation

2003-05-07 14:12  fmhess

	* man/comedi_calibrate.8 (tags: r0_7_21): added examples, and
	  more/updated option descriptions

2003-05-06 20:13  fmhess

	* comedi_calibrate/: comedi_calibrate.c, save_cal.c: fixed some bad
	  behaviour when using default calibration file path

2003-05-06 19:37  fmhess

	* comedi_calibrate/cal_common.c, comedi_calibrate/calib.h,
	  comedi_calibrate/cb.c, comedi_calibrate/comedi_calibrate.c,
	  comedi_calibrate/ni.c, comedi_calibrate/save_cal.c,
	  include/comedilib.h (tags: r0_7_22, r0_7_21), lib/calib.c,
	  lib/calib_yacc.y, man/comedi_calibrate.8: made default
	  comedi_calibrate behaviour a little smarter, shared more code
	  between comedilib and comedi_calibrate

2003-05-06 14:26  fmhess

	* lib/calib.c, lib/calib_yacc.y, lib/libinternal.h (tags: r0_7_22,
	  r0_7_21), include/comedilib.h: exposed some lower-level
	  calibration functions for more flexibility

2003-05-06 01:50  fmhess

	* comedi_calibrate/cb.c: cleanup old 1602/16 stuff

2003-05-05 21:24  fmhess

	* comedi_calibrate/: calib.h, cb.c, cb64.c, comedi_calibrate.c:
	  added options for specifying which subdev, channel, range, aref
	  you want comedi_calibrate to apply calibration for before exiting

2003-05-05 20:36  fmhess

	* comedi_calibrate/save_cal.c, lib/calib.c: changed convention for
	  default calibration file naming to something more transparent and
	  robust (since I figured out how to get minor number from code for
	  ls)

2003-05-05 10:37  fmhess

	* comedi_calibrate/comedi_calibrate.c: took out some debug messages
	  i accidentaly left in

2003-05-04 23:38  fmhess

	* comedi_calibrate/comedi_calibrate.c: made polarity determination
	  in binary calibrations more robust, to fix problems I saw when
	  caldac pushed input out-of-range

2003-05-04 23:18  fmhess

	* lib/calib.c: fixed comedi_apply_calibration so it applies all
	  matching calibrations instead of just the first one

2003-05-04 20:11  fmhess

	* comedi_calibrate/: cal_common.c, calib.h, cb.c,
	  comedi_calibrate.c: increased max number of observables for 611x
	  boards, added postgain offset to generic calibration routines,
	  used generic cal for mc pci-das1602/16 calibration.

2003-05-04 20:09  fmhess

	* comedi_calibrate/ni.c: pruned some dead code

2003-05-03 22:16  fmhess

	* comedi_calibrate/: cal_common.c, calib.h, cb.c, cb64.c: converted
	  all remaining boards (except mc pci-das1602/16) to use generic
	  calibration support

2003-05-03 18:25  fmhess

	* comedi_calibrate/cal_common.c: rearranged prep of adc for dac
	  calibration to be more flexible

2003-05-03 18:08  fmhess

	* comedi_calibrate/: cal_common.c, calib.h, cb64.c,
	  comedi_calibrate.c, ni.c: converted calibration of measurement
	  computing 60xx boards over to generic code

2003-05-03 10:59  fmhess

	* comedi_calibrate/ni.c, include/comedilib.h, lib/libinternal.h:
	  moved COMEDI_VERSION_CODE() macro to comedilib.h, added some
	  version checks to comedi_calibrate so it complains if it's using
	  a driver with known bugs.  Converted 6071 calibration to ad8804
	  addressing.

2003-05-03 10:57  fmhess

	* lib/data.c: i shouldn't have made comedi_internal_data_read()
	  inline, it's too long, and it causes gcc 2.9 to produce a bogus
	  warning

2003-05-02 21:11  fmhess

	* comedi_calibrate/ni.c: fixed 6035 dac1 offset caldac, added
	  inactive 6071e calibration guess for an ad8804 style caldac

2003-05-02 20:28  fmhess

	* comedi_calibrate/results/measurement-computing-pci-das6025 (tags:
	  r0_7_22, r0_7_21): new results

2003-05-02 20:17  fmhess

	* comedi_calibrate/results/DAQCard-6062E (tags: r0_7_22, r0_7_21):
	  updated dump, with driver caldac corrected to ad8804

2003-05-02 19:49  ds

	* doc/: comedilib.sgml, reference.sgml, tutorial.sgml: remove
	  system identifiers

2003-05-02 19:47  ds

	* debian/control: change section to libdevel

2003-05-02 19:43  ds

	* comedi_calibrate/ni.c: Add DAQCard-6024E

2003-05-02 19:41  ds

	* comedi_calibrate/results/: DAQCard-6024E (tags: r0_7_22,
	  r0_7_21), DAQCard-6062E, pci-6036e, pci-6071e: new results

2003-05-02 17:58  fmhess

	* comedi_calibrate/: Makefile.am, cal_common.c, calib.h, cb.c,
	  cb64.c, comedi_calibrate.c, ni.c: added 'write to file' support
	  for ni 611x boards, and calibration of all their input ranges.

2003-05-02 04:06  ds

	* doc/Makefile.am: clean better

2003-05-02 04:01  ds

	* version: remove

2003-05-02 03:53  ds

	* debian/rules, Makefile, comedi_calibrate/Makefile,
	  comedi_config/Makefile, demo/Makefile, doc/Makefile,
	  lib/Makefile, testing/Makefile: autoconfiscate

2003-05-02 03:53  ds

	* testing/Makefile.am (tags: v0_8_0, r0_7_22, r0_7_21): need
	  headers

2003-05-02 03:52  ds

	* demo/Makefile.am (tags: r0_7_22, r0_7_21): demos should be nodist

2003-05-02 03:37  ds

	* lib/calib_lex.l (tags: r0_7_22, r0_7_21): clean up warning

2003-05-02 03:33  ds

	* lib/Makefile.am: Fix yacc and lex building

2003-05-02 03:22  ds

	* m4/: as-ac-expand.m4 (tags: r0_7_21), as-libtool.m4,
	  as-version.m4 (tags: r0_7_21): autoconfiscation

2003-05-02 03:19  ds

	* Makefile.am, configure.ac, comedi_calibrate/Makefile.am,
	  comedi_config/Makefile.am, demo/Makefile.am, doc/Makefile.am,
	  lib/Makefile.am, man/Makefile.am (tags: v0_8_0, r0_7_22,
	  r0_7_21), testing/Makefile.am, autogen.sh: autoconfiscation

2003-05-01 20:54  fmhess

	* comedi_calibrate/ni.c: converted all NI boards to write
	  calibrations to file.  Also, it will calibrate unipolar analog
	  output ranges separately for them.

2003-05-01 10:43  fmhess

	* comedi_calibrate/comedi_calibrate.c: fix get_bipolar_lowgain()
	  which i broke

2003-04-30 18:59  fmhess

	* comedi_calibrate/ni.c: added unipolar analog output observables

2003-04-30 16:36  fmhess

	* comedi_calibrate/README (tags: r0_7_22, r0_7_21): added some
	  comments on cal_*binary() functions

2003-04-30 16:30  fmhess

	* comedi_calibrate/: cb64.c, comedi_calibrate.c, ni.c: made all
	  cal_*binary() functions set oor behaviour to COMEDI_OOR_NUMBER

2003-04-30 16:17  fmhess

	* comedi_calibrate/: calib.h, cb.c, comedi_calibrate.c, ni.c: added
	  is_unipolar() and is_bipolar() query functions, added
	  very_low_target() helper function for generating unipolar targets
	  that are close but not zero.

2003-04-29 21:06  fmhess

	* comedi_calibrate/: calib.h, ni.c: added support for reading
	  reference from eeprom for most boards

2003-04-29 12:09  fmhess

	* comedi_calibrate/comedi_calibrate.c: fix cal_linearity_binary()

2003-04-28 21:50  fmhess

	* comedi_calibrate/ni.c: offset unipolar ground observable targets
	  half a bit above zero

2003-04-28 21:00  fmhess

	* comedi_calibrate/: calib.h, cb.c, cb64.c, comedi_calibrate.c,
	  ni.c: added support for calibrating analog output linearity

2003-04-28 12:15  fmhess

	* comedi_calibrate/ni.c: daqcard 6062e calibration should be good
	  now (with a little luck)

2003-04-27 21:00  fmhess

	* comedi_calibrate/: calib.h, comedi_calibrate.c, ni.c: added more
	  unipolar observables for ni boards, so unipolar calibrations can
	  be done.

2003-04-27 20:14  fmhess

	* comedi_calibrate/comedi_calibrate.c: tweaked
	  cal_postgain_binary() so it gets the least significant bit right

2003-04-27 14:13  fmhess

	* comedi_calibrate/comedi_calibrate.c: okay, _really_ got last bit
	  correct with cal_binary() this time.

2003-04-26 20:08  fmhess

	* comedi_calibrate/comedi_calibrate.c: fixed new_sv_init() calls so
	  they are not hard-coded to assume the adc subdevice is subdevice
	  0.

2003-04-26 20:03  fmhess

	* comedi_calibrate/: calib.h, comedi_calibrate.c: tweaks to
	  cal_binary() so that it gets the last, least significant bit
	  correct.

2003-04-26 18:24  fmhess

	* comedi_calibrate/ni.c: hmm, should have left postgain offset
	  caldac as argument to cal_postgain() for 6062e

2003-04-26 18:23  fmhess

	* comedi_calibrate/README: STATUS_NONE is actually STATUS_UNKNOWN

2003-04-26 17:09  fmhess

	* comedi_calibrate/ni.c: removed bogus free()

2003-04-26 14:54  fmhess

	* comedi_calibrate/ni.c: init saved_calibration_t array for daqcard
	  6062e

2003-04-26 12:23  fmhess

	* comedi_calibrate/: cb.c, cb64.c, comedi_calibrate.c, ni.c: fixed
	  catching of unknown board name with NI drivers, fixed board name
	  of daqcard-6062E, added dummy daqcard-6064E, changed some cb
	  boards to use my favorite cal_binary().

2003-04-25 22:03  fmhess

	* comedi_calibrate/ni.c: swapped pre/postgain offsets

2003-04-25 22:02  fmhess

	* comedi_calibrate/comedi_calibrate.c: made error message on
	  failure to open device more informative

2003-04-25 16:43  fmhess

	* comedi_calibrate/comedi_calibrate.c: fixed reading of argument
	  for short option 'f' that I broke a while back

2003-04-24 21:58  fmhess

	* lib/: buffer.c, calib.c, cmd.c, comedi.c, data.c, dio.c, error.c,
	  filler.c (tags: v0_8_0, r0_7_22, r0_7_21), get.c, ioctl.c (tags:
	  v0_8_0, r0_7_22, r0_7_21), libinternal.h, range.c, sv.c, timed.c,
	  timer.c: tweaked include directives so gcc -MM generates better
	  dependency files

2003-04-24 21:50  fmhess

	* comedi_calibrate/: Makefile, cb64.c, comedi_calibrate.c, ni.c:
	  added some dependency generation to makefile

2003-04-24 21:44  fmhess

	* lib/: Makefile, buffer.c, calib.c, calib_yacc.y, cmd.c, comedi.c,
	  data.c, dio.c, error.c, filler.c, get.c, ioctl.c, range.c, sv.c,
	  timed.c, timer.c: added some dependency file generation

2003-04-24 21:43  fmhess

	* lib/libinternal.h: added some white space to fix preprocessor
	  weirdness, ## was causing __FUNCTION__ to disappear instead of
	  the comma?

2003-04-24 21:02  fmhess

	* comedi_calibrate/: calib.h, comedi_calibrate.c, ni.c: initial
	  pass at daqcard-6062e support, and got rid of global do_output
	  variable.

2003-04-24 00:20  fmhess

	* comedi_calibrate/cb.c: added multiple range calibration for
	  measurement computing pci-das1xxx cards

2003-04-22 17:20  fmhess

	* comedi_calibrate/cb64.c: added multi-range calibration support
	  for pci-das4020

2003-04-21 20:04  fmhess

	* demo/: Makefile, apply_cal.c (tags: r0_7_22, r0_7_21): added
	  apply_cal demo

2003-04-21 19:57  fmhess

	* comedi_calibrate/: cb.c, cb64.c: added ao calibration and
	  multiple ai range calibration for measurement computing 64xx
	  boards

2003-04-20 21:50  fmhess

	* man/comedi_calibrate.8: added --[no-]calibrate and --[no-]reset
	  options

2003-04-20 21:48  fmhess

	* comedi_calibrate/: Makefile, calib.h, cb.c, cb64.c,
	  comedi_calibrate.c: split off cb64.c from cb.c

2003-04-20 21:48  fmhess

	* comedi_calibrate/ni.c: made a bunch of functions static

2003-04-20 18:50  fmhess

	* comedi_calibrate/: calib.h, cb.c, comedi_calibrate.c: made
	  do_reset option work with multiple range calibrations for 60xx

2003-04-19 21:42  fmhess

	* comedi_calibrate/comedi_calibrate.c: added application of
	  appropriate calibrations before dumps or results

2003-04-19 21:41  fmhess

	* comedi_calibrate/cb.c: fixed calibration of ai ranges != 0 (doh).
	  Changed a bunch of functions to static.

2003-04-19 16:32  fmhess

	* lib/libinternal.h: fix deprecation warning with gcc3.2

2003-04-19 00:56  fmhess

	* comedi_calibrate/: calib.h, cb.c, comedi_calibrate.c: added
	  analog output calibration for measurement computing 60xx series

2003-04-18 21:40  fmhess

	* lib/calib_lex.l: fix initialization of line counter, some yytext
	  -> calib_yytext changes

2003-04-01 14:28  fmhess

	* comedi_calibrate/cb.c: changed some debugging fprintfs to stderr
	  into DPRINTs

2003-03-19 15:08  fmhess

	* lib/: calib.c, calib_lex.l, calib_yacc.y, libinternal.h: make
	  flex stuff as reentrant as i can

2003-03-19 13:56  fmhess

	* lib/: calib_lex.l, calib_yacc.y, libinternal.h:
	  comedi_apply_calibration() almost reentrant now

2003-03-19 11:26  fmhess

	* lib/Makefile: added -D_REENTRANT to library CFLAGS

2003-03-06 14:18  fmhess

	* comedi_calibrate/save_cal.c: added a couple comment lines to top
	  of generated calibration files

2003-03-06 14:07  fmhess

	* lib/calib_yacc.y: made parsing slightly more forgiving with
	  respect to commas, in case user hand-edits calibration file

2003-03-06 14:06  fmhess

	* lib/calib_lex.l: stopped comments from getting printed

2003-03-06 14:05  fmhess

	* lib/calib.c: moved stderr output to use COMEDILIB_DEBUG()

2003-03-06 14:04  fmhess

	* doc/funcref: added return value for comedi_apply_calibration()

2003-03-05 12:01  fmhess

	* demo/insn.c (tags: r0_7_22, r0_7_21): set default n_scan value to
	  10 for insn demo, added check that it is not set larger than
	  MAX_SAMPLES

2003-03-05 11:55  fmhess

	* lib/: calib.c, calib_yacc.y, libinternal.h: a couple not so
	  important tweaks to calibration file parsing, before I leave it

2003-03-04 19:46  fmhess

	* lib/: calib_yacc.y, libinternal.h: got rid of unneccessary
	  yyrestart()

2003-03-04 19:30  fmhess

	* lib/: Makefile, calib.c, calib_lex.l, calib_yacc.y,
	  libinternal.h: removed libperl dependency by switching to
	  bison/flex to parse calibration file.

2003-03-03 19:41  fmhess

	* doc/funcref, include/comedilib.h, lib/Makefile, lib/calib.c,
	  lib/cmd.c, lib/comedi.c, lib/error.c, lib/libinternal.h: Changed
	  comedi_set_calibration() to comedi_apply_calibration(), and made
	  it much faster, it takes <100msec to run instead of >1sec.  It
	  requires linking to libperl now (hope that's okay).  Renamed
	  DEBUG() and _() in libinternal.h to COMEDILIB_DEBUG() and
	  GETTEXT() in order to avoid conflicts with perl headers.

2003-02-28 22:30  fmhess

	* man/comedi_calibrate.8: added descriptions of some options,
	  --save-file in particular

2003-02-28 20:52  fmhess

	* doc/funcref: added documentation for comedi_set_calibration()

2003-02-28 20:03  fmhess

	* lib/calib.c: catch errors from find_calibration()

2003-02-28 17:40  fmhess

	* lib/calib.c: fixed missing dollar signs, and "subdev" should have
	  been "subdevices"

2003-02-28 15:51  fmhess

	* lib/calib.c: finished implementing comedi_set_calibration() (for
	  real this time), untested

2003-02-26 14:36  fmhess

	* lib/calib.c: fixed finding calibration based on subdevice.
	  Ignore previous log message about finishing implementation of
	  comedi_set_calibration(), as it's only half done.

2003-02-26 14:31  fmhess

	* comedi_calibrate/save_cal.c: added subdevice to calibration file

2003-02-26 14:19  fmhess

	* include/comedilib.h, lib/calib.c, lib/version_script: finished
	  implementing comedi_set_calibration() (untested)

2003-02-26 12:58  fmhess

	* comedi_calibrate/: comedi_calibrate.c, save_cal.c: fixed use of
	  short option 's', got rid of semicolon at end of file, only mess
	  with /etc/comedi/calibrations directory if we are using default
	  save file location

2003-02-24 17:30  fmhess

	* lib/: Makefile, calib.c: beginnings of comedi_set_calibration()

2003-02-24 14:20  fmhess

	* comedi_calibrate/: calib.h, cb.c, comedi_calibrate.c, save_cal.c:
	  added command line option for specifiying name of file you want
	  to write calibration to

2003-02-16 11:45  fmhess

	* lib/: ioctl.c, libinternal.h: fixed setting of __comedi_errno
	  after ioctl

2003-02-05 18:04  fmhess

	* comedi_calibrate/cb.c: all analog input ranges are now calibrated
	  for meas computing pci-das60xx

2003-02-05 14:04  fmhess

	* comedi_calibrate/: calib.h, cb.c, save_cal.c: added a couple
	  convenience functions

2003-02-05 10:05  fmhess

	* etc/rel_comedilib: updated reference to old lineo cvs server

2003-02-04 23:18  fmhess

	* comedi_calibrate/: cb.c, save_cal.c: want to use ino_t to
	  identify comedi device file instead of dev_t, which always
	  contains major/minor number of hard drive

2003-02-04 14:45  fmhess

	* comedi_calibrate/save_cal.c: removed some dead code

2003-02-04 13:21  fmhess

	* comedi_calibrate/: calib.h, save_cal.c: writing calibrations to a
	  file should be useable now

2003-02-01 20:56  fmhess

	* comedi_calibrate/: Makefile, calib.h, comedi_calibrate.c,
	  save_cal.c: initial support for writing a set of calibrations to
	  a text file

2003-01-09 12:53  fmhess

	* comedi_calibrate/cb.c: added linefeed

2003-01-01 18:22  fmhess

	* comedi_calibrate/cb.c: better error message when reading
	  calibration voltages from eeprom

2003-01-01 18:08  fmhess

	* demo/mmap.c (tags: r0_7_22, r0_7_21), lib/buffer.c: include
	  string.h for memset()

2003-01-01 18:07  fmhess

	* comedi_calibrate/other.c (tags: r0_7_22, r0_7_21),
	  demo/antialias.c (tags: r0_7_22, r0_7_21), demo/ao_waveform.c
	  (tags: r0_7_21), demo/dio.c (tags: r0_7_22, r0_7_21), demo/info.c
	  (tags: r0_7_21), demo/inp.c (tags: r0_7_22, r0_7_21), demo/inpn.c
	  (tags: r0_7_22, r0_7_21), demo/insn.c, demo/ledclock.c (tags:
	  r0_7_22, r0_7_21), demo/mmap.c, demo/outp.c (tags: r0_7_22,
	  r0_7_21), demo/poll.c (tags: r0_7_22, r0_7_21), demo/receiver.c,
	  demo/select.c (tags: r0_7_22, r0_7_21), demo/sender.c (tags:
	  r0_7_22, r0_7_21), demo/sigio.c (tags: r0_7_22, r0_7_21),
	  testing/main.c (tags: v0_8_0, r0_7_22, r0_7_21): fixing includes
	  for exit(), memset() for gcc 2.96 compiler warnings

2003-01-01 18:05  fmhess

	* Makefile: ignoring error so make install works when docs not
	  built

2003-01-01 17:47  fmhess

	* comedi_calibrate/cb.c: analog output calibration for cb_pcidas
	  boards, plus reading of calibration voltages from eeprom.

2003-01-01 17:46  fmhess

	* comedi_calibrate/ni.c: inactive support for reading calibration
	  voltage from eeprom on 611x (not sure if ni_get_reference() is
	  correct)

2002-12-30 21:15  fmhess

	* comedi_calibrate/cb.c: update status of pci-das1200

2002-12-30 20:13  fmhess

	* demo/dio.c: fix compiler warning

2002-12-30 20:09  fmhess

	* comedi_calibrate/comedi_calibrate.c: added cb_pcidas driver

2002-12-10 21:38  fmhess

	* etc/pcmcia/comedi.conf: new dev_info names for pcm-das08 and
	  daqcard-1200 so pcmcia script runs comedi_config correctly

2002-11-29 17:02  fmhess

	* comedi_calibrate/ni.c: added some comments about how internal
	  voltage reference appears when using +-50V or +-20V input ranges

2002-11-29 16:54  fmhess

	* comedi_calibrate/: calib.h, comedi_calibrate.c, ni.c: added
	  ability to adjust settling time used by new_sv_measure(), since
	  611x needs more than standard 99usec settle.

2002-11-29 16:29  fmhess

	* comedi_calibrate/: comedi_calibrate.c, ni.c: 611x calibration
	  works now

2002-11-29 16:27  fmhess

	* comedi_calibrate/other.c: fixed comedi_nanosleep(), which did
	  nothing before

2002-11-26 15:06  fmhess

	* demo/mmap.c: added error check for mmap() call

2002-11-25 16:05  fmhess

	* comedi_calibrate/ni.c: rearranged order of 611x observables to
	  deal with only having 2 ai channels on 6111

2002-11-25 15:56  fmhess

	* comedi_calibrate/ni.c: I think we finally have 611x calibration
	  right

2002-11-24 10:41  fmhess

	* comedi_calibrate/ni.c: correcting ao caldac channels after fixing
	  caldac type in driver

2002-11-24 10:16  fmhess

	* comedi_calibrate/ni.c: 611x documentation was wrong, calibration
	  sources do not correspond to those from other boards.  Guessing
	  at index for 5V positive 0V negative calibration source.

2002-11-24 10:15  fmhess

	* comedi_calibrate/comedi_calibrate.c: changed printing of "offset
	  , target" to "reading , target" since the value it was printing
	  was the actual voltage reading and not an offset from the target
	  value

2002-11-23 16:34  fmhess

	* comedi_calibrate/ni.c: 611x calibration doesn't like 5v-0v
	  reference for gain calibration, wants 5v-5v reference

2002-11-23 16:09  fmhess

	* comedi_calibrate/ni.c: fix calibration channels for 611x analog
	  output

2002-11-23 13:15  fmhess

	* comedi_calibrate/ni.c: fixed 611x names to match ni_pcimio driver

2002-11-23 13:13  fmhess

	* comedi_calibrate/ni.c: added CR_ALT_SOURCE and CR_ALT_FILTER to
	  observe_insn.chanspec's, needed by 611x, and should be harmless
	  to other boards

2002-11-22 16:45  fmhess

	* demo/ao_waveform.c: increased BUF_LEN, so demo works better with
	  ni boards

2002-11-22 02:17  ds

	* include/comedi.h: update from comedi

2002-11-22 02:15  ds

	* testing/cmd_1.c (tags: r0_7_21): Fix for cases where the command
	  doesn't allow source choices

2002-11-22 01:48  ds

	* testing/mmap.c (tags: r0_7_21): fix mmap testing

2002-11-19 19:43  fmhess

	* demo/mmap.c: changed & to %, before it seemed to assume the
	  buffer size was a power of 2

2002-11-18 18:49  fmhess

	* doc/funcref: added documentation for comedi_data_read_delayed()
	  and comedi_data_read_hint() because I'm sick of anwering
	  questions about why comedi_data_read() returns inaccurate values.

2002-11-18 12:05  fmhess

	* comedi_calibrate/: calib.h, cb.c, comedi_calibrate.c, ni.c: 611x
	  calibration support.	More conversion to new CONFIG_ALT_SOURCE
	  usage (backward compatibility with AREF_OTHER should still work )

2002-11-12 13:36  fmhess

	* comedi_calibrate/cb.c: updating status of 6023

2002-11-05 00:21  ds

	* etc/pcmcia/comedi.conf: Fixes, add cb_das16_cs

2002-09-24 21:19  ds

	* Makefile: install de LC_MESSAGES

2002-09-24 21:17  ds

	* comedi_calibrate/results/pci-6032e (tags: r0_7_22, r0_7_21):
	  lksjdf

2002-09-24 21:16  ds

	* comedi_config/comedi_config.c: Fix i18n

2002-09-24 21:12  ds

	* demo/info.c: remove some stuff that is in the lib now

2002-09-24 21:11  ds

	* demo/ao_waveform.c: add some error checking

2002-09-24 21:08  ds

	* doc/funcref: fix typo on comedi_open

2002-09-24 21:04  ds

	* comedi_calibrate/ni.c: Last log is bogus.  Should be: disable AO0
	  on 6071e, since it doesn't work correctly.

2002-09-24 21:02  ds

	* comedi_calibrate/comedi_calibrate.c: Added help() and --help flag

2002-09-24 21:02  ds

	* comedi_calibrate/ni.c: Add help() and --help flag

2002-09-09 18:16  ds

	* comedi_calibrate/results/DAQCard-ai-16e-4 (tags: r0_7_22,
	  r0_7_21): results

2002-09-09 18:15  ds

	* comedi_calibrate/ni.c: DAQCard-16e-4 is done

2002-08-29 19:35  ds

	* comedi_calibrate/: ni.c, results/pci-6023e (tags: r0_7_22,
	  r0_7_21): Fixes for 6023.

2002-08-28 16:07  ds

	* comedi_calibrate/ni.c: DAQCard-AI-16e-4, pci-6023e improvments

2002-08-19 20:09  ds

	* comedi_calibrate/ni.c: change 6032e to DONE

2002-08-19 19:11  ds

	* comedi_calibrate/ni.c: Added 6032e

2002-08-06 15:39  ds

	* demo/mmap.c: Fix mistake getting buffer head position

2002-07-23 21:52  ds

	* version: version bump

2002-07-22 16:45  fmhess

	* doc/other.sgml: added a couple paragraphs for people who don't
	  know what anti-alias filters are.

2002-07-03 23:30  ds

	* include/comedi.h (tags: r0_7_19): copy from Comedi

2002-07-03 23:29  ds

	* include/comedilib.h (tags: r0_7_19): rearrangement

2002-07-01 00:01  fmhess

	* include/comedi.h: sync with comedi

2002-06-23 19:31  fmhess

	* comedi_calibrate/cb.c (tags: r0_7_19): added support for
	  cb_pcidas.c boards

2002-06-20 19:54  fmhess

	* comedi_calibrate/cb.c: added computer boards pci-das6023

2002-06-15 17:25  fmhess

	* testing/results/Measurement_Computing_pcidas-6023 (tags: r0_7_21,
	  r0_7_19): new test results

2002-06-12 20:00  ds

	* lib/: comedi.c, data.c, error.c, get.c, ioctl.c, libinternal.h,
	  range.c (utags: r0_7_19): Fix up some versioning mistakes

2002-06-12 19:19  ds

	* comedi_calibrate/: calib.h, comedi_calibrate.c, ni.c,
	  results/pci-mio-16e-4 (tags: r0_7_22, r0_7_21) (utags: r0_7_19):
	  Add cal_postgain_binary() and use it for 6052e and pci-mio-16e-4

2002-06-12 18:44  ds

	* comedi_calibrate/README (tags: r0_7_19): notes about the new
	  calibration functions

2002-06-12 17:49  ds

	* comedi_calibrate/: calib.h, comedi_calibrate.c, ni.c,
	  results/pci-mio-16e-4: Add binary search calibration function.

2002-06-11 22:02  ds

	* lib/: Makefile (tags: r0_7_19), buffer.c (tags: r0_7_19), cmd.c
	  (tags: r0_7_19), comedi.c, data.c, dio.c (tags: r0_7_19),
	  error.c, get.c, libinternal.h, range.c, sv.c (tags: r0_7_19),
	  timed.c (tags: r0_7_19), timer.c (tags: r0_7_19), version_script
	  (tags: r0_7_19): Add symbol versioning.  Versions need to be
	  checked with 0.7.18 release.

2002-06-11 22:01  ds

	* doc/Makefile (tags: r0_7_19): remove rm of non-autogenerated
	  files

2002-06-11 22:00  ds

	* debian/rules (tags: r0_7_19): Fix shlibdeps to get the built
	  library

2002-06-07 13:55  ds

	* comedi_calibrate/results/pci-6024e (tags: r0_7_22, r0_7_21,
	  r0_7_19): [no log message]

2002-06-07 13:54  ds

	* comedi_calibrate/ni.c: Update for 6024e

2002-06-06 20:18  ds

	* testing/results/pci-6052e (tags: v0_8_0, r0_7_22, r0_7_21,
	  r0_7_19): [no log message]

2002-06-06 20:17  ds

	* doc/FAQ (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19): More questions

2002-06-06 20:16  ds

	* demo/ao_waveform.c (tags: r0_7_19): Handles range,maxdata
	  information correctly.  Internal triggering works.

2002-06-05 21:21  ds

	* comedi_calibrate/ni.c: disable CR_ALT_SOURCE until there's a
	  check for Comedi support

2002-06-05 20:38  ds

	* testing/: insn_read.c (tags: v0_8_0, r0_7_22, r0_7_21), main.c
	  (utags: r0_7_19): test reading 0 samples

2002-06-05 20:28  ds

	* comedi_calibrate/results/: at-mio-16xe-50 (tags: r0_7_22,
	  r0_7_21, r0_7_19), pci-6035e (tags: r0_7_22, r0_7_21, r0_7_19),
	  pci-mio-16e-4: [no log message]

2002-06-05 20:27  ds

	* comedi_calibrate/ni.c: finish 6035e, fix 16e-4 after change to
	  debug caldac

2002-05-22 18:53  ds

	* comedi_calibrate/ni.c: updates for 6035e

2002-05-22 12:44  fmhess

	* demo/ao_waveform.c: fix INTTRIG insn

2002-05-19 22:23  fmhess

	* comedi_calibrate/: calib.h, cb.c, comedi_calibrate.c, ni.c: added
	  initial support for calibrating 64xx series cards.  Added support
	  for reading calibration source voltages from eeprom.	Got rid of
	  a couple more global variables just for kicks.

2002-05-18 19:00  ds

	* debian/rules:
	  Move etc/ to libcomedi0 package

2002-05-18 18:48  ds

	* include/comedilib.h, lib/get.c: Add
	  comedi_get_read/write_subdevice()

2002-05-18 18:47  ds

	* debian/libcomedi0.postinst (tags: r0_7_19): devices should be
	  made in /dev

2002-05-18 18:46  ds

	* Makefile (tags: r0_7_19): Fix install of html docs

2002-05-18 17:52  fmhess

	* Makefile: fudging Makefile so it doesn't fail on 'make install'
	  with cvs checkout

2002-05-17 16:24  ds

	* comedi_calibrate/ni.c: Mark 6052e as done

2002-05-17 11:33  fmhess

	* comedi_calibrate/cb.c: added CR_ALT_FILTER and CR_ALT_SOURCE to
	  observe_insn.chanspec's

2002-05-16 22:22  ds

	* include/comedi.h: Make CR_PACK less strict.

2002-05-16 22:21  ds

	* comedi_calibrate/: Makefile (tags: r0_7_19), calib.h,
	  comedi_calibrate.c, ni.c, other.c (tags: r0_7_19): Changed new_sv
	  to use chanspec.  Updated 6052e.  Changed ni.c to use
	  CR_ALT_SOURCE for one observable.

2002-05-16 22:19  ds

	* lib/data.c: Fix up data_read_* code

2002-05-16 22:18  ds

	* comedi_calibrate/results/pci-6052e (tags: r0_7_19): updated

2002-05-16 02:31  ds

	* lib/libinternal.h: Make comedi_ioctl less verbose

2002-05-16 02:30  ds

	* lib/: buffer.c, comedi.c, data.c, filler.c (tags: r0_7_19),
	  ioctl.c, libinternal.h, sv.c: Added new ioctl() wrapper.

2002-05-15 15:53  ds

	* lib/: filler.c, libinternal.h: Change cmd tester to check for
	  Comedi version, and then use SDF_CMD flag.

2002-05-13 17:39  fmhess

	* comedi_calibrate/cb.c: oops 4020 calibration was using 60xx
	  routine

2002-05-13 00:58  fmhess

	* comedi_calibrate/cb.c: pci-das60xx should use ground aref not
	  differential

2002-05-12 23:55  fmhess

	* comedi_calibrate/: calib.h, cb.c, comedi_calibrate.c, ni.c: basic
	  calibration of pci-das6025 works now, added 4020 calibration code

2002-05-11 23:07  fmhess

	* comedi_calibrate/: calib.h, cb.c, comedi_calibrate.c, ni.c: got
	  rid of some global variables

2002-05-11 03:35  ds

	* lib/: buffer.c, comedi.c, data.c, filler.c, ioctl.c,
	  libinternal.h, sv.c: Remove all the ioctl_ wrappers, because they
	  were dumb.

2002-05-11 02:45  ds

	* doc/mkdr (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19): Added parsing
	  of Status header and &amp

2002-05-11 02:43  ds

	* doc/comedilib.sgml (tags: r0_7_19): Add glossary

2002-05-11 02:43  ds

	* demo/insn.c (tags: r0_7_19): Use n_scans as the number of samples
	  to measure.

2002-05-11 02:42  ds

	* comedi_calibrate/ni.c: Added at-mio-16e-1

2002-05-10 15:08  ds

	* demo/info.c (tags: r0_7_19): Get rid of spurious "subdevice does
	  not support commands" warnings.

2002-05-07 19:42  fmhess

	* include/comedi.h: sync with comedi

2002-05-06 21:32  fmhess

	* comedi_calibrate/: Makefile, calib.h, cb.c, comedi_calibrate.c,
	  ni.c: Added dummy support for cb_pcidas64 boards that does
	  nothing so far.  Slowly getting rid of global variables as I go.

2002-05-01 15:58  fmhess

	* doc/drivers.txt (tags: r0_7_19): updated drivers.txt generated
	  from comedi, that fixes some parse errors

2002-05-01 15:27  ds

	* doc/: glossary.sgml, install.sgml, intro.sgml, other.sgml,
	  reference.sgml, tutorial.sgml (utags: r0_7_19): moved DOCTYPE in
	  each file into a comment.  Vim still recognizes it, but there are
	  no more jade warnings/errors

2002-05-01 15:24  ds

	* doc/Makefile: added pdf target

2002-05-01 15:24  ds

	* doc/funcref (tags: r0_7_19): Added some functions

2002-04-30 19:07  fmhess

	* lib/data.c: some more additions so flags don't cause invalid
	  channel error

2002-04-30 18:56  fmhess

	* comedi_calibrate/calib.h, comedi_calibrate/comedi_calibrate.c,
	  include/comedi.h, lib/data.c: Horrible hack to allow passing of
	  CR flags through channel arguments.  Made comedi_calibrate use
	  comedi_data_read_n() from main library.  Should be able to add
	  computer boards support to comedi_calibrate soon now.

2002-04-29 17:13  fmhess

	* include/comedilib.h, lib/data.c: added comedi_data_read_n()

2002-04-29 15:50  fmhess

	* include/comedilib.h, lib/data.c: added comedi_data_read_hint()
	  and fixed comedi_data_read_n()

2002-04-29 14:58  fmhess

	* include/comedilib.h: oops arg is really nanoseconds

2002-04-29 14:26  fmhess

	* lib/data.c: fixed initialization of insn array in
	  comedi_data_read_delayed(), added unnecessary init of ilist

2002-04-29 14:22  fmhess

	* include/comedilib.h, lib/data.c: added comedi_data_read_delayed()

2002-04-29 14:19  fmhess

	* comedi_calibrate/calib.h: oops incomplete commit last time.

2002-04-27 15:24  fmhess

	* comedi_calibrate/: comedi_calibrate.c, ni.c: got rid of global
	  variable device_status

2002-04-16 23:58  fmhess

	* include/comedi.h: updated from comedi, for calibration config
	  stuff

2002-04-16 16:51  fmhess

	* demo/mmap.c (tags: r0_7_19): replaced call to
	  comedi_get_front_count() with call to identical
	  comedi_get_buffer_offset() since that is the function that is
	  actually declared in comedilib.h

2002-04-02 14:55  fmhess

	* demo/eeprom_dump.c (tags: r0_7_22, r0_7_21, r0_7_19): fixed error
	  checking that tested for unsigned variables being negative

2002-03-18 18:12  ds

	* doc/glossary.sgml: typing

2002-03-18 17:18  ds

	* doc/: glossary.sgml, vocab.sgml: Change name

2002-03-18 17:14  ds

	* testing/results/Adlink_PCI-9118DG (tags: v0_8_0, r0_7_22,
	  r0_7_21, r0_7_19), comedi_calibrate/results/pci-6025e (tags:
	  r0_7_22, r0_7_21, r0_7_19), doc/vocab.sgml: [no log message]

2002-03-18 17:11  ds

	* demo/ao_waveform.c: Added multi-channel support

2002-03-18 17:10  ds

	* debian/rules: Fix for toplevel makefile change

2002-03-18 17:09  ds

	* Makefile: Clean up installation

2002-03-18 17:08  ds

	* comedi_calibrate/ni.c: Fix stupid ttypo

2002-03-18 16:52  ds

	* demo/perl/inp.pl (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19): perl
	  demo

2002-03-18 16:50  ds

	* demo/cmd.c (tags: r0_7_22, r0_7_21, r0_7_19): Changes to make it
	  a little more robust

2002-03-18 16:49  ds

	* comedi_calibrate/ni.c: Fix for 6025.	Other 602x boards probably
	  have the same problem.

2002-03-18 16:48  ds

	* testing/: cmd_1.c (tags: r0_7_19), main.c, mmap.c (tags:
	  r0_7_19): added output command test

2002-03-18 16:47  ds

	* todo (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19): [no log message]

2002-03-14 18:33  ds

	* comedi_calibrate/results/pci-mio-16e-1 (tags: r0_7_22, r0_7_21,
	  r0_7_19): [no log message]

2002-03-14 18:30  ds

	* comedi_calibrate/: ni.c, results/pci-mio-16xe-10 (tags: r0_7_22,
	  r0_7_21, r0_7_19): Finish pci-mio-16xe-10

2002-03-08 20:22  ds

	* README (tags: r0_7_19), comedi_config/comedi_config.c (tags:
	  r0_7_19), debian/copyright (tags: r0_7_19), doc/FAQ,
	  include/comedilib.h, man/comedi.7 (tags: v0_8_0, r0_7_22,
	  r0_7_21, r0_7_19), man/comedi_config.8 (tags: r0_7_19),
	  perl/README (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19),
	  rpm/comedilib.spec (tags: r0_7_19): Change email addresses and
	  host names.

2002-03-08 19:25  ds

	* etc/pcmcia/comedi.conf (tags: r0_7_19):
	  Add DAQ-DIO-24

2002-03-08 19:20  ds

	* python/: compy.c, sample1.py (utags: r0_7_19): Patch from John
	  Conner <conner@empiredi.com>

2002-03-08 19:12  ds

	* include/comedi.h: Update from Comedi

2002-03-08 18:44  ds

	* lib/filler.c: Fix BUG in do_test_for_insn_bits() while testing
	  irrelevant subdevices that are busy.

2002-03-07 17:34  fmhess

	* doc/comedilib.sgml: added Herman as author

2002-02-26 06:08  ds

	* rpm/: comedilib.patch (tags: r0_7_19), comedilib.spec: let's
	  build some RPMs.  From Tim Ousley <tim.ousley@ni.com>

2002-02-20 22:14  ds

	* debian/: conffiles, libcomedi0.conffiles (tags: r0_7_19): Move to
	  correct location

2002-02-20 22:08  ds

	* debian/libcomedi0.conffiles: Comedilib has conffiles

2002-02-20 15:17  ds

	* comedi_calibrate/: comedi_calibrate.c, ni.c, results/pci-6052e:
	  6052e works now

2002-02-16 18:23  ds

	* Makefile: Install demo/*.c, install etc/*.conf correctly

2002-02-12 17:30  ds

	* etc/pcmcia/comedi.conf: More devices

2002-02-12 17:30  ds

	* etc/rel_comedilib (tags: r0_7_19): added cleanup

2002-02-12 17:29  ds

	* Changelog (tags: r0_7_22, r0_7_21, r0_7_19): changelog entry for
	  0.7.18

2002-02-11 19:54  ds

	* comedi_calibrate/: calib.h, comedi_calibrate.c: Added printing of
	  Id string from device source

2002-02-11 19:47  ds

	* comedi_calibrate/ni.c: Update 6052e to use ad8804 caldac.
	  Requires current Comedi CVS.

2002-02-10 16:55  ds

	* comedi_calibrate/calib.h: Change N_CALDACS to 64.

2002-02-06 17:08  ds

	* testing/: cmd_1.c, cmd_2.c (tags: v0_8_0, r0_7_22, r0_7_21,
	  r0_7_19), inttrig.c (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19),
	  main.c, mmap.c, select.c (tags: v0_8_0, r0_7_22, r0_7_21,
	  r0_7_19): Disabled streaming output on many of the command tests

2002-02-05 22:09  ds

	* comedi_calibrate/results/: pci-6023e (tags: r0_7_19), pci-6024e,
	  pci-6052e, pci-mio-16xe-50 (tags: r0_7_22, r0_7_21, r0_7_19): [no
	  log message]

2002-02-05 22:08  ds

	* comedi_calibrate/ni.c: Update some cards

2002-01-31 19:34  ds

	* comedi_calibrate/ni.c: Iteration on 6052e

2002-01-31 06:24  ds

	* comedi_calibrate/: ni.c, results/pci-6052e: Added 6052e

2002-01-27 16:05  fmhess

	* comedi_config/comedi_config.c: fixed buffer resizing for
	  subdevices that aren't subdevice zero.

2002-01-24 21:14  ds

	* comedi_calibrate/: comedi_calibrate.c, ni.c: Print Id without $.
	  Additional info on 6071e.

2002-01-24 21:14  ds

	* comedi_calibrate/results/pci-6071e (tags: r0_7_19): [no log
	  message]

2002-01-22 06:35  ds

	* version (tags: r0_7_19): bump

2002-01-22 05:01  ds

	* etc/rel_comedilib (tags: r0_7_18): Cleanup.

2002-01-22 05:00  ds

	* debian/changelog (tags: r0_7_19, r0_7_18): [no log message]

2002-01-22 04:34  ds

	* demo/ledclock.c (tags: r0_7_19, r0_7_18): Make it work with the
	  parallel port again

2002-01-22 04:32  ds

	* comedi_calibrate/comedi_calibrate.c (tags: r0_7_18): Fixed
	  strange unreproducible behavior with insn barfing.  Turns out
	  that -5 is not really equal to -5.

2002-01-21 23:06  fmhess

	* etc/pcmcia/comedi.conf (tags: r0_7_18): correct id number for
	  daqcard-1200

2002-01-21 22:09  fmhess

	* etc/pcmcia/comedi.conf: oops it was actually a driver problem

2002-01-21 21:53  fmhess

	* etc/pcmcia/comedi.conf: fixes for boards where the device name is
	  not the module name

2002-01-21 10:35  ds

	* doc/drivers.txt (tags: r0_7_18): Current Comedi CVS drivers.txt.

2002-01-21 10:32  ds

	* doc/: Makefile (tags: r0_7_18), advanced.sgml (tags: r0_7_19,
	  r0_7_18), comedilib.sgml (tags: r0_7_18), funcref (tags:
	  r0_7_18), install.sgml (tags: r0_7_18), intro.sgml (tags:
	  r0_7_18), mkdr (tags: r0_7_18), mkref (tags: r0_7_19, r0_7_18),
	  other.sgml (tags: r0_7_18), reference.sgml (tags: r0_7_18),
	  tutorial, tutorial.sgml (tags: r0_7_18), docbook/Makefile,
	  docbook/advanced.sgml, docbook/comedilib.sgml,
	  docbook/drivers.txt, docbook/funcref, docbook/install.sgml,
	  docbook/intro.sgml, docbook/mkdr, docbook/mkref,
	  docbook/other.sgml, docbook/reference.sgml,
	  docbook/tutorial.sgml: Move documentation ported to DocBook-3.1
	  out of docbook directory.

2002-01-21 10:17  ds

	* doc/docbook/: Makefile, comedilib.sgml, funcref, mkref,
	  other.sgml, reference.sgml, tutorial.sgml: Updates

2002-01-21 06:15  ds

	* doc/docbook/: Makefile, advanced.sgml, comedilib.sgml,
	  drivers.txt, funcref, install.sgml, intro.sgml, mkdr, mkref,
	  other.sgml, reference.sgml, tutorial.sgml: Converting docs to
	  DocBook 3.1

2002-01-20 19:33  ds

	* demo/Makefile (tags: r0_7_19, r0_7_18): Fix to make the demo
	  programs link statically with the local library.

2002-01-20 19:26  ds

	* debian/changelog: [no log message]

2002-01-20 19:14  ds

	* doc/comedilib.sgml: Fixed some [] characters.

2002-01-20 19:13  ds

	* doc/FAQ (tags: r0_7_18): Added a few questions

2002-01-14 20:02  ds

	* version (tags: r0_7_18): [no log message]

2002-01-14 19:31  ds

	* debian/comedilib1.files: remove autogenerated file

2002-01-14 19:29  ds

	* comedi_calibrate/: calib.h (tags: r0_7_18), comedi_calibrate.c,
	  ni.c (tags: r0_7_18), results/DAQCard-ai-16xe-50 (tags: r0_7_22,
	  r0_7_21, r0_7_19, r0_7_18): Added fine calibration.  Changed
	  DAQCard-ai-16xe-50 and at-mio-16xe-50 to use fine calibration.

2002-01-14 17:50  ds

	* etc/modules.conf (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19,
	  r0_7_18): Clear up some confusion

2002-01-14 17:45  ds

	* etc/: conf.modules, modules.conf: Change name.  It seems most
	  distros are using modules.conf

2002-01-14 17:39  ds

	* comedi_calibrate/: ni.c, results/pci-mio-16e-1 (tags: r0_7_18):
	  PCI-MIO-16E-1 is now done

2002-01-14 16:29  ds

	* debian/libcomedi0.postinst (tags: r0_7_18): Use MAKEDEV instead
	  of building inodes ourselves

2002-01-14 16:28  ds

	* debian/control (tags: r0_7_19, r0_7_18): Fix spelling error.
	  Depend on makedev.

2002-01-14 16:26  ds

	* comedi_calibrate/: README (tags: r0_7_18), comedi_calibrate.c,
	  ni.c, results/at-mio-16xe-50 (tags: r0_7_18), results/pci-6071e
	  (tags: r0_7_18), results/pci-6713 (tags: r0_7_22, r0_7_21,
	  r0_7_19, r0_7_18), results/pci-mio-16xe-10 (tags: r0_7_18): Add
	  README.  Add a few boards.  Fix: CONFIG_GUESS boards output dump
	  information.

2002-01-08 15:38  fmhess

	* demo/cmd.c (tags: r0_7_18): included string.h for declaration of
	  memset.

2001-12-14 17:45  ds

	* comedi_calibrate/results/pci-6025e (tags: r0_7_18): [no log
	  message]

2001-12-01 00:26  ds

	* etc/pcmcia/comedi.conf: Merged from Comedi

2001-11-17 22:02  ds

	* Changelog (tags: r0_7_18, r0_7_17): Changelog for 0.7.17

2001-11-17 21:52  ds

	* debian/changelog (tags: r0_7_17): update

2001-11-07 18:20  ds

	* debian/: changelog, control (tags: r0_7_17), libcomedi0.postinst
	  (tags: r0_7_17), libcomedi0.postrm (tags: r0_7_19, r0_7_18,
	  r0_7_17), libcomedi0.shlibs (tags: r0_7_19, r0_7_18, r0_7_17):
	  merge NMU from Branden Robinson

2001-10-24 18:25  ds

	* demo/poll.c (tags: r0_7_19, r0_7_18, r0_7_17): Removed
	  comedi_poll(), since it was moved to comedilib

2001-10-24 18:24  ds

	* lib/cmd.c (tags: r0_7_18, r0_7_17): Fixed warning by adding
	  header

2001-10-24 18:23  ds

	* Config (tags: r0_7_19), lib/Makefile (utags: r0_7_17, r0_7_18):
	  Added SONAME_SUFFIX

2001-10-18 05:19  ds

	* comedi_calibrate/results/at-mio-16xe-50 (tags: r0_7_17): [no log
	  message]

2001-10-18 05:16  ds

	* comedi_calibrate/ni.c (tags: r0_7_17): added at-mio-16xe-50

2001-10-16 04:19  ds

	* Makefile (tags: r0_7_18, r0_7_17): Split up install target

2001-10-11 20:01  ds

	* debian/control: Updated standards version

2001-10-11 19:58  ds

	* debian/ex.doc-base.package: remove file causing lintian problems

2001-10-10 18:59  ds

	* comedi_calibrate/ni.c: update status of 16e-2

2001-10-10 18:55  ds

	* comedi_calibrate/results/at-mio-16e-2 (tags: r0_7_22, r0_7_21,
	  r0_7_19, r0_7_18, r0_7_17): from ds

2001-10-10 18:34  ds

	* comedi_calibrate/results/DAQCard-ai-16xe-50 (tags: r0_7_17):
	  updated

2001-10-10 18:08  ds

	* comedi_calibrate/results/DAQCard-ai-16xe-50: added

2001-10-10 18:07  ds

	* comedi_calibrate/: calib.h (tags: r0_7_17), comedi_calibrate.c
	  (tags: r0_7_17), ni.c: Cleanups, change log level for many
	  operations, added info for some ni boards

2001-10-09 19:45  ds

	* comedi_calibrate/: Makefile (tags: r0_7_18, r0_7_17), calib.h,
	  comedi_calibrate.c, ni.c: Split up comedi_calibrate.c, additional
	  hacking

2001-10-09 18:14  ds

	* comedi_calibrate/comedi_calibrate.c: more hacking.  check-in
	  before splitting into separate files

2001-10-09 15:35  ds

	* comedi_calibrate/comedi_calibrate.c: new code calibrates daqcard

2001-10-08 18:49  ds

	* comedi_calibrate/comedi_calibrate.c: Made observable channels
	  into objects (sort of)

2001-10-07 20:28  ds

	* comedi_calibrate/comedi_calibrate.c: Hides more stuff behind
	  verbose flag.  Less default info for unknown boards.	New number
	  printing mant(err)e+exp format

2001-10-04 19:44  ds

	* lib/: buffer.c (tags: r0_7_18, r0_7_17), cmd.c, comedi.c (tags:
	  r0_7_18, r0_7_17), data.c (tags: r0_7_18, r0_7_17), dio.c (tags:
	  r0_7_18, r0_7_17), error.c (tags: r0_7_18, r0_7_17), filler.c
	  (tags: r0_7_18, r0_7_17), get.c (tags: r0_7_18, r0_7_17), ioctl.c
	  (tags: r0_7_18, r0_7_17), libinternal.h (tags: r0_7_18, r0_7_17),
	  range.c (tags: r0_7_18, r0_7_17), sv.c (tags: r0_7_18, r0_7_17),
	  timed.c (tags: r0_7_18, r0_7_17), timer.c (tags: r0_7_18,
	  r0_7_17): Change all the file headers to LGPL

2001-10-04 19:33  ds

	* lib/range.c: added function to convert multiple samples to/from
	  phys units

2001-10-04 18:24  ds

	* doc/Makefile (tags: r0_7_17): More cleaning

2001-10-04 16:35  ds

	* doc/Makefile: cleaned up some of the document making

2001-10-04 16:17  ds

	* testing/results/Advantech_PCL-812PG (tags: v0_8_0, r0_7_22,
	  r0_7_21, r0_7_19, r0_7_18, r0_7_17): added

2001-10-04 16:12  ds

	* testing/main.c (tags: r0_7_18, r0_7_17): removed mode0_test from
	  list of standard tests

2001-10-04 16:10  ds

	* etc/pcmcia/comedi.conf (tags: r0_7_17): Added 6024E

2001-10-04 16:10  ds

	* doc/comedilib.sgml (tags: r0_7_17): Additional typing

2001-08-31 19:19  fmhess

	* demo/ao_waveform.c (tags: r0_7_18, r0_7_17): fixed bug that I did
	  that was noted by allan willcox

2001-08-28 19:50  ds

	* lib/cmd.c: Fix to fast_1chan, so it supports TRIG_INT for analog
	  output.

2001-08-24 15:08  fmhess

	* demo/ao_waveform.c: modified to work with TRIG_INT, made it use
	  the -F command line option to set update frequency

2001-08-24 15:08  fmhess

	* include/comedi.h (tags: r0_7_18, r0_7_17): copied over from
	  comedi, for INSN_INTTRIG support.

2001-08-18 21:32  ds

	* doc/comedilib.sgml: Additional verbage for extended triggering

2001-08-18 21:31  ds

	* comedi_config/comedi_config.c (tags: r0_7_18, r0_7_17): locale
	  settings need to be #ifdef'd

2001-08-18 21:30  ds

	* lib/libinternal.h: Oops.  libintl.h needs to be #ifdef'd

2001-08-18 21:27  ds

	* lib/: error.c, libinternal.h: gettextization of error messages

2001-08-18 21:27  ds

	* lib/filler.c: Random message change

2001-08-18 21:25  ds

	* lib/Makefile: Separated soname into separate definition

2001-08-18 21:24  ds

	* doc/Makefile: target for gettext message creation

2001-08-18 21:22  ds

	* comedi_config/comedi_config.c: gettext()ized

2001-08-18 21:22  ds

	* comedi_calibrate/comedi_calibrate.c: Reworked major portions.
	  Much more portable.

2001-08-18 21:21  ds

	* Config: Added -DI18N option

2001-08-18 21:19  ds

	* doc/po/de.po (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19, r0_7_18,
	  r0_7_17): Eine .po Datei auf deutsch

2001-08-01 08:07  ds

	* comedi_calibrate/comedi_calibrate.c: Enable dithering.  Fix wrong
	  expectation of return value from do_insn()

2001-07-30 16:40  ds

	* testing/main.c: Added long getopts and added help(), 'cuz I
	  always forget how to use it

2001-07-30 16:39  ds

	* doc/comedilib.sgml: Added lots about configuration instructions

2001-07-30 16:39  ds

	* etc/rel_comedilib (tags: r0_7_17): Make it quieter

2001-07-30 16:38  ds

	* demo/cmd.c (tags: r0_7_17): Fix includes

2001-07-30 16:38  ds

	* comedi_calibrate/comedi_calibrate.c: Change email address, add
	  Comedi version and device name

2001-07-30 16:37  ds

	* README (tags: r0_7_18, r0_7_17), comedi_config/comedi_config.c:
	  Fix typo

2001-07-25 11:53  fmhess

	* demo/insn.c (tags: r0_7_18, r0_7_17): made insn demo take 10
	  samples again as it originally did

2001-07-17 16:10  ds

	* comedi_calibrate/comedi_calibrate.c: Generate $Id: ChangeLog,v 1.3 2007-10-29 01:01:26 fmhess Exp $

2001-07-15 22:02  ds

	* Changelog: added changelog.

2001-07-15 20:05  ds

	* doc/: comedilib-1.html, comedilib-2.html, comedilib-3.html,
	  comedilib-4.html, comedilib-5.html, comedilib-6.html,
	  comedilib.html, comedilib.txt: It doesn't make sense to keep
	  regenerating these in CVS.  They are generated in the release
	  script now.

2001-07-15 20:04  ds

	* etc/rel_comedilib (tags: r0_7_16): release script

2001-07-15 19:58  ds

	* doc/Makefile (tags: r0_7_16): Simple makefile, 'cause I can never
	  remember the correct commands

2001-07-15 19:58  ds

	* doc/: comedilib-1.html, comedilib-2.html, comedilib-3.html,
	  comedilib-4.html, comedilib-5.html, comedilib-6.html,
	  comedilib.html, comedilib.txt: Regenerated docs

2001-07-15 19:52  ds

	* demo/README (tags: r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17,
	  r0_7_16): Add a few comments about recent changes in demos

2001-07-15 19:25  ds

	* debian/docs: Don't use debhelper

2001-07-15 19:24  ds

	* comedi_calibrate/Makefile, comedi_config/Makefile (tags: r0_7_19,
	  r0_7_18, r0_7_17) (utags: r0_7_16): Use ../Config

2001-07-15 19:24  ds

	* testing/Makefile (tags: r0_7_19, r0_7_18, r0_7_17, r0_7_16): Use
	  ../Config.  Fix 'make test'.

2001-07-15 19:15  ds

	* todo (tags: r0_7_18, r0_7_17, r0_7_16): Random todo checkin

2001-07-15 19:15  ds

	* Config, Makefile (utags: r0_7_16): Added user-editable Config
	  file.  Add support for $(PREFIX).

2001-07-15 19:14  ds

	* demo/Makefile (tags: r0_7_17), lib/Makefile (utags: r0_7_16): Get
	  CFLAGS from ../Config

2001-07-15 19:13  ds

	* debian/rules (tags: r0_7_18, r0_7_17, r0_7_16): remove
	  suidregister

2001-07-15 19:13  ds

	* version (tags: r0_7_17, r0_7_16): new version

2001-07-15 19:12  ds

	* debian/changelog (tags: r0_7_16): Getting ready to release a new
	  version

2001-07-15 19:11  ds

	* README (tags: r0_7_16): Random change

2001-07-15 18:47  ds

	* testing/main.c (tags: r0_7_16): Make stdout unbuffered, so that
	  if stderr==stdout, lines match up.

2001-07-15 18:47  ds

	* testing/cmd_1.c (tags: r0_7_18, r0_7_17, r0_7_16): Changed
	  prototype of comedi_get_cmd_generic_timed

2001-07-15 18:46  ds

	* testing/Makefile: Doesn't need to be static.	Added test target

2001-07-15 18:46  ds

	* lib/: buffer.c, cmd.c, comedi.c, comedi_errno.h (tags: v0_8_0,
	  r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17), error.c,
	  libinternal.h (utags: r0_7_16): Fix comedi_get_cmd_* so that
	  commands are only generated once.  More error messages.

2001-07-15 18:39  ds

	* demo/cmd.c, demo/mmap.c (tags: r0_7_18, r0_7_17),
	  include/comedilib.h (tags: r0_7_18, r0_7_17), testing/cmd_2.c
	  (tags: r0_7_18, r0_7_17), testing/cmd_3.c (tags: v0_8_0, r0_7_22,
	  r0_7_21, r0_7_19, r0_7_18, r0_7_17), testing/inttrig.c (tags:
	  r0_7_18, r0_7_17), testing/mmap.c (tags: r0_7_18, r0_7_17),
	  testing/select.c (tags: r0_7_18, r0_7_17) (utags: r0_7_16):
	  Change prototype of comedi_get_cmd_generic_timed

2001-07-15 15:58  ds

	* demo/sender.c (tags: r0_7_19, r0_7_18, r0_7_17, r0_7_16): Needs
	  string.h, not others

2001-07-15 15:57  ds

	* demo/mmap.c: Major hacking, just like cmd.c

2001-07-15 15:57  ds

	* demo/cmd.c: Replace <string.h>

2001-07-15 15:56  ds

	* demo/ao_waveform.c (tags: r0_7_16): Remove commented stuff

2001-07-13 20:53  ds

	* demo/: Makefile, cmd.c, common.c (tags: r0_7_22, r0_7_21,
	  r0_7_19, r0_7_18, r0_7_17, r0_7_16), main.c, README: Changed
	  main.c to common.c

2001-07-13 20:50  ds

	* demo/: Makefile, README, antialias.c (tags: r0_7_19, r0_7_18,
	  r0_7_17, r0_7_16), examples.h (tags: r0_7_22, r0_7_21, r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16), inp.c (tags: r0_7_19, r0_7_18,
	  r0_7_17, r0_7_16), insn.c (tags: r0_7_16), ledclock.c (tags:
	  r0_7_17, r0_7_16), main.c, mmap.c, outp.c (tags: r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16), poll.c (tags: r0_7_16), receiver.c
	  (tags: r0_7_19, r0_7_18, r0_7_17, r0_7_16), select.c (tags:
	  r0_7_19, r0_7_18, r0_7_17, r0_7_16), sigio.c (tags: r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16), sv.c (tags: r0_7_19, r0_7_18,
	  r0_7_17, r0_7_16): Changed the name of verbose_flag; Added a few
	  more flags in main.c

2001-07-13 20:50  ds

	* demo/cmd.c: Major fixes and added inline documentation.  It's
	  actually somewhat decent now.

2001-07-13 20:42  ds

	* lib/comedi.c: Added a bit of __comedi_errno initialization

2001-07-12 17:41  fmhess

	* doc/comedilib.sgml (tags: r0_7_16): removed bit about chanlist
	  error in cmdtest, since all bad chanlist errors should return
	  same value, so I should change my drivers

2001-07-12 16:34  fmhess

	* lib/cmd.c: added a burst-mode-like command to
	  comedi_get_cmd_generic_timed()

2001-07-12 16:28  fmhess

	* doc/comedilib.sgml: more comedi_cmd related documentation

2001-07-10 19:12  fmhess

	* lib/libinternal.h: fix for compile warning with range.c

2001-07-10 18:58  ds

	* demo/README: Updates from (someone), plus corrections and
	  additions by ds.

2001-07-10 18:55  ds

	* demo/ledclock.c: Added comments

2001-07-10 18:33  ds

	* Makefile: clean python and perl, even if not built

2001-07-10 18:31  ds

	* lib/filler.c (tags: r0_7_16): Added debug_ptr().  Fixed
	  do_test_for_cmd()

2001-07-10 18:30  ds

	* demo/: ledclock.c, receiver.c: Remove sched.h, because we don't
	  use it and uclibc doesn't have it

2001-07-10 18:28  ds

	* demo/perl/: info.perl (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19),
	  inp.pl (utags: r0_7_16, r0_7_17, r0_7_18): Perl demos moved from
	  perl/ directory

2001-07-10 18:26  ds

	* debian/conffiles (tags: r0_7_18, r0_7_17, r0_7_16): [no log
	  message]

2001-07-10 18:26  ds

	* etc/: conf.modules (tags: r0_7_17), das1600.conf (tags: v0_8_0,
	  r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17), dt282x.conf (tags:
	  v0_8_0, r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17),
	  pcmcia/comedi (tags: r0_7_19, r0_7_18, r0_7_17),
	  pcmcia/comedi.conf, pcmcia/comedi.opts (tags: v0_8_0, r0_7_22,
	  r0_7_21, r0_7_19, r0_7_18, r0_7_17) (utags: r0_7_16): Copied the
	  etc/ directory from Comedi

2001-07-10 18:25  ds

	* doc/comedilib.txt: A text version, for all the crazies

2001-07-10 18:23  ds

	* doc/: comedilib-4.html, comedilib-5.html, comedilib-6.html,
	  comedilib.html, comedilib_reference-1.html,
	  comedilib_reference-2.html, comedilib_reference-3.html,
	  comedilib_reference-4.html, comedilib_reference.html,
	  comedilib_reference.sgml: Remove comedilib_reference, rebuild
	  comedilib*html

2001-07-10 18:21  ds

	* comedi_config/comedi_config.c (tags: r0_7_16): Fix getopt
	  segfaulting

2001-07-09 16:12  ds

	* demo/sigio.c: Changed from siginfo handler to signal.

2001-07-08 22:41  ds

	* testing/: cmd_1.c, mmap.c: Moved chatter behind if(verbose)

2001-07-06 14:11  fmhess

	* doc/comedilib.sgml: added CR_PACK description

2001-07-05 01:21  ds

	* comedi_config/comedi_config.c: Fixed getuid()/geteuid() problem
	  causing modprobe post-install scripts to fail.  Updated usage
	  information.

2001-07-02 12:42  fmhess

	* doc/comedilib.sgml: Added a little bit more to command section.

2001-07-01 07:59  ds

	* doc/comedilib.sgml: More work on cmd trig sources

2001-06-30 21:02  fmhess

	* doc/comedilib.sgml: added a bit to the command section, merged
	  comedilib_reference into this file.  Still have to document
	  comedi_cmd struct and related functions.

2001-06-27 18:21  ds

	* Makefile: Added install targets for perl, python, debian

2001-06-27 18:19  ds

	* debian/rules: Changed install target to install_debian

2001-06-27 18:18  ds

	* testing/mode0_read.c (tags: r0_7_21, r0_7_19, r0_7_18, r0_7_17,
	  r0_7_16): Uses deprecated functions, so added
	  _COMEDILIB_DEPRECATED

2001-06-27 18:18  ds

	* testing/mmap.c: Changed from siginfo handler to simple signal
	  handler

2001-06-27 18:17  ds

	* perl/Comedi.pm (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19, r0_7_18,
	  r0_7_17, r0_7_16): Added #! line

2001-06-27 18:17  ds

	* lib/libinternal.h: Added _COMEDILIB_DEPRECATED, 'cuz we still
	  support it internally

2001-06-27 18:16  ds

	* lib/comedi.c: Change return value of comedi_close to int

2001-06-27 18:16  ds

	* include/comedilib.h: Cleanup and rearrangement

2001-06-27 18:15  ds

	* doc/tutorial (tags: r0_7_17, r0_7_16): Fix bug about the return
	  value of comedi_get_range()

2001-06-27 18:14  ds

	* doc/: comedilib-1.html, comedilib-2.html, comedilib-3.html,
	  comedilib-4.html, comedilib-5.html, comedilib.html,
	  comedilib_reference-1.html, comedilib_reference.html:
	  re-autogenerated

2001-06-27 18:12  ds

	* demo/ledclock.c: Don't need fcntl(,F_SETSIG,)

2001-06-27 18:11  ds

	* demo/cmd.c: Fix previous bugus check-ins.

2001-06-27 18:11  ds

	* debian/libcomedi0.postinst (tags: r0_7_16): Added device nodes

2001-06-27 18:10  ds

	* comedi_calibrate/comedi_calibrate.c (tags: r0_7_16): change
	  INFINITY to HUGE_VAL

2001-06-27 18:09  ds

	* todo, version: [no log message]

2001-06-27 15:51  fmhess

	* demo/ao_waveform.c: made ao_waveform use same parse_options() as
	  other demos

2001-06-27 15:42  fmhess

	* demo/README: update from wuttke joachim

2001-06-21 18:26  fmhess

	* comedi_config/comedi_config.c: made it refuse to resize buffer if
	  we are removing device.  Mostly change is whitespace, just added
	  an if block.

2001-06-20 16:09  fmhess

	* todo: noted a Makefile problem

2001-06-14 05:13  ds

	* doc/: comedilib.sgml, comedilib_reference.sgml: Some work on docs

2001-06-13 06:22  ds

	* README: rewrote

2001-06-12 06:41  ds

	* testing/: cmd_1.c, cmd_2.c, comedi_test.h (tags: r0_7_21,
	  r0_7_19, r0_7_18, r0_7_17, r0_7_16), main.c, mmap.c, select.c:
	  Added realtime command line option.  Fixed tests to use realtime
	  flag.  Added internal trigger test.

2001-06-12 06:40  ds

	* testing/cmd_3.c: Fix realtime flag.

2001-06-12 06:39  ds

	* testing/inttrig.c: Test for internal triggering.

2001-06-12 06:38  ds

	* lib/: comedi.c, data.c (tags: r0_7_16), dio.c (tags: r0_7_16),
	  filler.c, libinternal.h: Added insn ioctl support.  Added insn
	  ioctl probing.  Renamed previously misnamed insnlist probing.
	  Rewrote comedi_data_read_n()

2001-06-12 06:37  ds

	* comedi_calibrate/comedi_calibrate.c: general hacking, convert
	  comedi_trigger to comedi_data_read_n

2001-06-12 06:36  ds

	* Makefile, lib/Makefile, testing/Makefile: fixes for
	  cross-compilation

2001-06-03 20:37  fmhess

	* man/comedi_config.8 (tags: r0_7_18, r0_7_17, r0_7_16): updated
	  reference to default buffer size from 128k -> 16k

2001-05-28 00:05  ds

	* Makefile: Add targets for python wrapper (disabled by default)

2001-05-28 00:00  ds

	* python/: compy.c, sample.py (tags: r0_7_19) (utags: r0_7_16,
	  r0_7_17, r0_7_18): hmmm... should compile things before I check
	  them in.

2001-05-27 23:57  ds

	* python/: Makefile.pre.in (tags: r0_7_19, r0_7_18, r0_7_17,
	  r0_7_16), Setup.in (tags: r0_7_19, r0_7_18, r0_7_17, r0_7_16),
	  compy.c, sample.py: Fix things so that they actually work

2001-05-27 23:35  fmhess

	* lib/cmd.c: fixed bug

2001-05-27 22:49  ds

	* python/: Makefile.pre.in, Setup.in, compy.c, sample.py: a python
	  wrapper

2001-05-27 22:39  ds

	* include/comedi.h (tags: r0_7_16): copied from comedi

2001-05-27 22:39  ds

	* testing/: Makefile, bufconfig.c (tags: v0_8_0, r0_7_22, r0_7_21,
	  r0_7_19, r0_7_18, r0_7_17, r0_7_16), cmd_1.c, cmd_2.c, cmd_3.c,
	  comedi_test.h, insn_read.c (tags: r0_7_18, r0_7_17, r0_7_16),
	  insn_read_time.c (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16), main.c, mmap.c, select.c: additional
	  tests, fixes, move some functions to ../lib

2001-05-27 22:38  ds

	* testing/lib.c (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19, r0_7_18,
	  r0_7_17, r0_7_16): staging area for moving functions from here to
	  ../lib

2001-05-27 22:36  ds

	* lib/libinternal.h: added HAVE_COMEDI_POLL

2001-05-27 22:36  ds

	* lib/Makefile: added cmd.c

2001-05-27 22:36  ds

	* lib/cmd.c: added cmd related functions

2001-05-27 22:35  ds

	* lib/get.c (tags: r0_7_16): added get_subdevice_flags()

2001-05-27 22:34  ds

	* include/comedilib.h: added get_cmd_src_mask,
	  get_cmd_generic_timed, comedi_poll()

2001-05-27 22:33  ds

	* demo/: Makefile, poll.c: added poll example

2001-05-27 22:31  ds

	* testing/results/: Advantech_PCI-1710, Advantech_PCI-1711,
	  Advantech_PCI-1720, Advantech_PCI-1731, DAQCard-6062E,
	  DAQCard-ai-16xe-50 (utags: r0_7_16, r0_7_17, r0_7_18, r0_7_19,
	  r0_7_21, r0_7_22, v0_8_0): more results

2001-05-27 22:28  ds

	* COPYING (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19, r0_7_18,
	  r0_7_17, r0_7_16): Changed to LGPL, because that's what it was
	  supposed to be.

2001-05-24 14:22  ds

	* comedi_calibrate/comedi_calibrate.c: changed N_CALDACS to 32

2001-05-13 20:06  fmhess

	* demo/ao_waveform.c: removed outdated lseek stuff

2001-05-13 20:04  fmhess

	* demo/: cmd.c, main.c, mmap.c: explicitly initialized value,
	  subdevice, channel, aref and range in main.c

2001-05-04 12:41  timousley

	* include/comedi.h: changed all GPCTR names to GPCT

2001-05-02 11:16  fmhess

	* comedi_calibrate/comedi_calibrate.c: added checks for malloc
	  failure

2001-05-01 20:08  fmhess

	* lib/: comedi_errno.h, error.c: a small step towards standardized
	  comedi error codes

2001-05-01 16:51  fmhess

	* COPYING: added copy of GPL

2001-04-28 12:14  ds

	* Makefile: Fixed test for debian package build

2001-04-27 16:33  fmhess

	* lib/buffer.c: put back comedi_get_max_buffer_size

2001-04-27 15:06  timousley

	* include/comedi.h: added #define for GPCTR_GET_INT_CLK_FRQ

2001-04-24 12:37  fmhess

	* include/comedilib.h, lib/buffer.c, lib/get.c: removed buffer
	  config functions that I accidentally duplicated, made names of
	  alpha functions follow conventions of older functions

2001-04-20 15:47  timousley

	* include/comedi.h: added GPCTR constants.

2001-04-08 18:28  fmhess

	* include/comedilib.h: added some comments describing alpha
	  functions

2001-04-08 14:03  fmhess

	* include/comedilib.h: added comedi_buf_offset function that
	  returns buf_user_ptr

2001-04-08 14:02  fmhess

	* lib/buffer.c: forgot to add buffer.c file containing definitions
	  for new functions

2001-04-06 19:12  fmhess

	* include/comedi.h, include/comedilib.h, lib/Makefile, lib/ioctl.c
	  (tags: r0_7_16), lib/libinternal.h: added buffer info ioctl
	  support and some alpha buffer related functions

2001-03-13 04:35  ds

	* comedi_calibrate/split_dumps (tags: r0_7_22, r0_7_21, r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16): a script probably only useful to ds

2001-03-13 04:34  ds

	* Makefile: make install now installs man pages to the wrong place,
	  as per user request

2001-03-13 04:32  ds

	* debian/: changelog, control (tags: r0_7_16): [no log message]

2001-03-07 00:09  ds

	* testing/results/: at-mio-16e-10 (tags: v0_8_0, r0_7_22), dt2814
	  (tags: v0_8_0, r0_7_22), pci-dio-32hs, rti800 (tags: v0_8_0,
	  r0_7_22) (utags: r0_7_16, r0_7_17, r0_7_18, r0_7_19, r0_7_21):
	  [no log message]

2001-03-02 01:52  ds

	* comedi_config/comedi_config.c (tags: r0_7_15): change bufconfig
	  version test from 0.7.56 to 0.7.57

2001-03-02 01:52  ds

	* testing/mmap.c (tags: r0_7_15): added test to make sure area is
	  unmapped

2001-03-02 01:50  ds

	* todo (tags: r0_7_15): [no log message]

2001-03-01 17:01  ds

	* comedi_config/comedi_config.c: changed bufconfig to support new
	  bufconfig structure

2001-03-01 16:59  ds

	* testing/: Makefile, bufconfig.c, main.c (utags: r0_7_15): added
	  bufconfig test

2001-03-01 16:58  ds

	* lib/get.c (tags: r0_7_15): bufconfig support

2001-03-01 16:58  ds

	* lib/dio.c (tags: r0_7_15): enabled use of instructions for
	  dio_bits

2001-03-01 16:57  ds

	* include/comedilib.h (tags: r0_7_15): added bufconfig support

2001-03-01 16:57  ds

	* demo/: Makefile, antialias.c, ao_waveform.c, cmd.c, dio.c (tags:
	  r0_7_19, r0_7_18, r0_7_17, r0_7_16), eeprom_dump.c (tags:
	  r0_7_18, r0_7_17, r0_7_16), examples.h, info.c (tags: r0_7_18,
	  r0_7_17, r0_7_16), inp.c, inpn.c (tags: r0_7_19, r0_7_18,
	  r0_7_17, r0_7_16), insn.c, ledclock.c, main.c, mmap.c, outp.c,
	  receiver.c, select.c, sender.c, sigio.c, sv.c (utags: r0_7_15): 5
	  new demos cmd uses main.c removal of direct ioctl calls

2001-03-01 16:54  ds

	* debian/control (tags: r0_7_15): added dependency on debhelper

2001-03-01 16:54  ds

	* comedi_calibrate/comedi_calibrate.c (tags: r0_7_15): fixes for
	  DAQCard-AI-16XE-50 and new pci-6023e better dumping support
	  better statistics

2001-03-01 16:52  ds

	* README (tags: r0_7_15): horribly out of date.  needs fixing BAD

2001-03-01 16:52  ds

	* INSTALL (tags: r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15):
	  update docs

2001-03-01 00:10  ds

	* include/comedi.h (tags: r0_7_15): interface update

2001-02-23 12:27  fmhess

	* comedi_config/comedi_config.c: added permission error report if
	  not run as root, removed redundant sanity check I put in last
	  revision

2001-02-22 16:48  fmhess

	* comedi_config/comedi_config.c: made comedi_config no longer
	  require a driver name when used to detach a driver

2001-02-22 15:11  fmhess

	* comedi_config/comedi_config.c, man/comedi_config.8 (tags:
	  r0_7_15): documented -r --remove option for comedi_config

2001-02-15 16:01  fmhess

	* demo/cmd.c: added some comments, including advice on how to make
	  interrupt handler run at hard real time priority

2001-01-30 15:13  fmhess

	* include/comedi.h: removed my misguided SDF_MMAPPED flag

2001-01-28 19:48  fmhess

	* include/comedi.h: added SDF_MMAPPED flag

2001-01-25 15:46  fmhess

	* man/comedi_config.8: added buffer resize options to man page

2001-01-25 07:34  fmhess

	* comedi_config/comedi_config.c: fixed bug with option parsing when
	  both read and write buffers are resized simultaneously

2001-01-24 20:23  fmhess

	* comedi_config/comedi_config.c: added exit(1) on buffer resize
	  error

2001-01-24 19:49  fmhess

	* comedi_config/comedi_config.c: added --read-buffer and
	  --write-buffer options for resizing buffers, incremented
	  CC_VERSION to 0.7.13

2001-01-24 19:45  fmhess

	* include/comedi.h: added bufconfig struct and ioctl

2001-01-23 13:26  ds

	* todo: added todo

2001-01-23 13:24  ds

	* testing/results/PCI-MIO-something (tags: v0_8_0, r0_7_22,
	  r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15): don't know

2001-01-23 13:23  ds

	* lib/filler.c (tags: r0_7_15): export more of units

2001-01-23 13:23  ds

	* lib/comedi.c (tags: r0_7_15): memleak fix from someone

2001-01-23 13:22  ds

	* demo/ao_waveform.c: bugfix

2001-01-23 13:22  ds

	* comedi_config/comedi_config.c: spelling fix

2001-01-23 13:21  ds

	* testing/mmap.c: added segfault testing

2001-01-16 17:01  ds

	* testing/results/: pci-dio-32hs, dt2814 (utags: r0_7_15): new
	  result

2001-01-16 16:56  ds

	* testing/results/at-mio-16e-10 (tags: r0_7_15): new result

2000-11-30 18:13  ds

	* debian/changelog, version (utags: r0_7_14, r0_7_15): version bump

2000-11-30 17:59  ds

	* demo/mmap.c (tags: r0_7_14): removed testing code

2000-11-30 17:57  ds

	* testing/: Makefile, README (tags: v0_8_0, r0_7_22, r0_7_21,
	  r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15), cmd_1.c (tags:
	  r0_7_15), cmd_2.c (tags: r0_7_15), cmd_3.c (tags: r0_7_15),
	  comedi_test.h (tags: r0_7_15), insn_read_time.c (tags: r0_7_15),
	  main.c, select.c (tags: r0_7_15), results/DAQCard-ai-16xe-50
	  (tags: r0_7_15) (utags: r0_7_14): testing additions

2000-11-29 20:29  ds

	* demo/tut2.c (tags: r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17,
	  r0_7_16, r0_7_15, r0_7_14): random cleanup

2000-11-24 23:19  ds

	* demo/mmap.c, testing/mmap.c (tags: r0_7_14): mmap demo and
	  testing

2000-11-24 23:19  ds

	* demo/Makefile (tags: r0_7_14), testing/Makefile, testing/main.c:
	  [no log message]

2000-11-07 15:14  ds

	* comedi_config/comedi_config.c (tags: r0_7_14): fixed errno sign
	  problem

2000-10-19 02:57  ds

	* demo/: Makefile, dio.c (tags: r0_7_14): added dio.c

2000-10-19 02:31  ds

	* demo/Makefile: readded tut2

2000-10-19 02:30  ds

	* comedi_calibrate/Makefile (tags: r0_7_15, r0_7_14),
	  comedi_config/Makefile (tags: r0_7_15, r0_7_14), lib/Makefile
	  (tags: r0_7_15, r0_7_14), testing/Makefile: added additional
	  warning flags

2000-10-19 02:29  ds

	* demo/examples.h (tags: r0_7_14): added header file for example
	  common code

2000-10-19 02:28  ds

	* demo/: Makefile, README (tags: r0_7_15, r0_7_14), antialias.c
	  (tags: r0_7_14), ao_waveform.c (tags: r0_7_14), cmd.c (tags:
	  r0_7_14), eeprom_dump.c (tags: r0_7_14), info.c (tags: r0_7_14),
	  inp.c (tags: r0_7_14), inpn.c (tags: r0_7_14), insn.c (tags:
	  r0_7_14), main.c (tags: r0_7_14), mode2.c, mode3.c, mode4.c,
	  outp.c (tags: r0_7_14), sv.c (tags: r0_7_14), tut1.c (tags:
	  v0_8_0, r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16,
	  r0_7_15, r0_7_14), tut2.c, rt/Makefile, rt/README, rt/ai.c,
	  rt/it.c: Cleanup of example programs

2000-10-15 17:33  ds

	* comedi_config/comedi_config.c: added <stdlib.h>

2000-10-13 06:26  ds

	* lib/comedi.c (tags: r0_7_14, r0_7_13): revert change to
	  COMEDI_INSN ioctl

2000-10-13 05:23  ds

	* version (tags: r0_7_13): version bump

2000-10-13 05:23  ds

	* debian/libcomedi0.shlibs (tags: r0_7_16, r0_7_15, r0_7_14,
	  r0_7_13): changed version dependency

2000-10-13 05:22  ds

	* testing/: Makefile, cmd_1.c, main.c (utags: r0_7_13): added
	  command test

2000-10-13 05:21  ds

	* lib/: comedi.c, dio.c (tags: r0_7_14, r0_7_13), filler.c (tags:
	  r0_7_14, r0_7_13): dio fixes

2000-10-11 21:46  ds

	* debian/rules (tags: r0_7_15, r0_7_14, r0_7_13, r0_7_12): more
	  lintian fixes

2000-10-11 21:44  ds

	* debian/: dirs (tags: r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17,
	  r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12), rules: lintian
	  fixes

2000-10-11 21:40  ds

	* Makefile (tags: r0_7_15, r0_7_14, r0_7_13, r0_7_12): lintian
	  fixes

2000-10-11 19:16  ds

	* debian/rules: fix /usr/bin/comedi_config to /usr/sbin/

2000-10-11 17:16  ds

	* debian/changelog (tags: r0_7_13), version (utags: r0_7_12):
	  version change

2000-10-11 16:58  ds

	* debian/: changelog, libcomedi0.postinst (tags: r0_7_15, r0_7_14,
	  r0_7_13, r0_7_12): lintian fixes

2000-10-11 16:52  ds

	* doc/comedilib-4.html (tags: r0_7_15, r0_7_14, r0_7_13, r0_7_12):
	  regen

2000-10-11 16:52  ds

	* man/comedi_calibrate.8 (tags: r0_7_19, r0_7_18, r0_7_17, r0_7_16,
	  r0_7_15, r0_7_14, r0_7_13, r0_7_12): added comedi_calibrate man
	  page

2000-10-11 16:51  ds

	* comedi_config/comedi_config.c (tags: r0_7_13, r0_7_12): fixed
	  wrong version

2000-10-10 04:41  ds

	* comedi_calibrate/comedi_calibrate.c (tags: r0_7_14, r0_7_13,
	  r0_7_12): random fixes

2000-10-10 04:39  ds

	* lib/: dio.c, filler.c (utags: r0_7_12): instruction support bug
	  fix

2000-10-10 04:38  ds

	* Makefile: move comedi_config back to /usr/sbin

2000-10-10 03:21  ds

	* comedi_config/comedi_config.c: added debugging messages added
	  support for loading extended data

2000-10-09 20:52  ds

	* man/: comedi.7 (tags: r0_7_18, r0_7_17, r0_7_16, r0_7_15),
	  comedi_config.8 (utags: r0_7_12, r0_7_13, r0_7_14): updated man
	  pages

2000-10-09 20:52  ds

	* testing/: Makefile (tags: r0_7_12), comedi_test.h (tags: r0_7_13,
	  r0_7_12), info.c (tags: r0_7_21, r0_7_19, r0_7_18, r0_7_17,
	  r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12), inpn.c, insn_read.c
	  (tags: r0_7_15, r0_7_14, r0_7_13, r0_7_12), main.c (tags:
	  r0_7_12), mode0_read.c (tags: r0_7_15, r0_7_14, r0_7_13,
	  r0_7_12), mode1.c, mode2.c: added tests and created main

2000-09-05 21:03  ds

	* demo/README (tags: r0_7_13, r0_7_12, r0_7_11): README changes

2000-09-05 14:55  ds

	* comedi_calibrate/comedi_calibrate.c (tags: r0_7_11): additions

2000-09-05 14:47  ds

	* demo/cmd.c (tags: r0_7_13, r0_7_12, r0_7_11): added comment

2000-09-05 14:14  ds

	* demo/mode1.c: removed

2000-09-05 14:10  ds

	* demo/: cmd.c, insn.c (tags: r0_7_13, r0_7_12, r0_7_11), mode2.c
	  (tags: r0_7_13, r0_7_12, r0_7_11): changes

2000-09-05 14:09  ds

	* debian/: changelog, control (tags: r0_7_14, r0_7_13, r0_7_12)
	  (utags: r0_7_11): maintainer email change

2000-09-02 22:22  ds

	* lib/: comedi.c (tags: r0_7_12), data.c (tags: r0_7_15, r0_7_14,
	  r0_7_13, r0_7_12), dio.c, filler.c, get.c (tags: r0_7_14,
	  r0_7_13, r0_7_12), ioctl.c (tags: r0_7_15, r0_7_14, r0_7_13,
	  r0_7_12), libinternal.h (tags: r0_7_15, r0_7_14, r0_7_13,
	  r0_7_12), range.c (tags: r0_7_16, r0_7_15, r0_7_14, r0_7_13,
	  r0_7_12) (utags: r0_7_11): lots of changes with commands and
	  instructions

2000-09-02 22:20  ds

	* include/comedilib.h (tags: r0_7_14, r0_7_13, r0_7_12, r0_7_11):
	  addition of several functions

2000-09-02 22:19  ds

	* include/comedi.h (tags: r0_7_14, r0_7_13, r0_7_12, r0_7_11):
	  comedi.h update

2000-09-02 22:16  ds

	* demo/insn.c: documentation additions and updates

2000-09-02 22:15  ds

	* demo/info.c (tags: r0_7_13, r0_7_12, r0_7_11): added lots of more
	  information

2000-09-02 22:15  ds

	* demo/cmd.c: added documentation

2000-09-02 22:14  ds

	* version (tags: r0_7_11): version update

2000-09-02 22:13  ds

	* doc/: comedilib.sgml, comedilib_reference-1.html,
	  comedilib_reference-2.html, comedilib_reference-3.html,
	  comedilib_reference-4.html, comedilib_reference.html,
	  comedilib_reference.sgml (utags: r0_7_11, r0_7_12, r0_7_13,
	  r0_7_14, r0_7_15): added comedilib_reference and comedilib
	  updates

2000-08-09 19:34  ds

	* comedi_calibrate/comedi_calibrate.c: fixed name to ni_atmio,
	  ni_pcimio

2000-08-09 17:13  ds

	* demo/Makefile (tags: r0_7_13, r0_7_12, r0_7_11, r0_7_10): added
	  insn

2000-08-09 17:13  ds

	* doc/: comedilib-1.html (tags: r0_7_15, r0_7_14, r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10), comedilib-2.html (tags: r0_7_15, r0_7_14,
	  r0_7_13, r0_7_12, r0_7_11, r0_7_10), comedilib-3.html (tags:
	  r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10),
	  comedilib-4.html (tags: r0_7_11, r0_7_10), comedilib-5.html
	  (tags: r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10),
	  comedilib-6.html (tags: r0_7_15, r0_7_14, r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10), comedilib.html (tags: r0_7_15, r0_7_14,
	  r0_7_13, r0_7_12, r0_7_11, r0_7_10), html/comedilib-1.html,
	  html/comedilib-2.html, html/comedilib-3.html,
	  html/comedilib-4.html, html/comedilib-5.html,
	  html/comedilib-6.html, html/comedilib.html: move html files

2000-08-09 17:11  ds

	* demo/insn.c (tags: r0_7_10): insn demo

2000-08-09 17:08  ds

	* demo/cmd.c (tags: r0_7_10): more features

2000-08-09 17:07  ds

	* debian/: dirs, rules (utags: r0_7_10, r0_7_11): updates

2000-08-09 17:07  ds

	* Makefile (tags: r0_7_11, r0_7_10): install man pages,
	  comedi_config, comedi_calibrate

2000-08-09 17:06  ds

	* doc/comedilib.sgml (tags: r0_7_10): fix to more specific doc type

2000-08-09 17:05  ds

	* include/comedi.h (tags: r0_7_10): update

2000-08-09 17:04  ds

	* lib/comedi.c (tags: r0_7_10): sscanf->strtol

2000-08-09 17:03  ds

	* lib/: ioctl.c, filler.c (utags: r0_7_10): add insn support

2000-08-09 16:27  ds

	* lib/libinternal.h (tags: r0_7_10): added insn support

2000-06-08 17:49  ds

	* Makefile: fix for comedi_config

2000-06-03 15:57  ds

	* comedi_config/Makefile (tags: r0_7_13, r0_7_12),
	  comedi_config/comedi_config.c, man/comedi.7, man/comedi_config.8
	  (utags: r0_7_10, r0_7_11): moved stuff from comedi

2000-06-02 17:52  ds

	* demo/mode2.c (tags: r0_7_10): rewrite

2000-06-02 17:37  ds

	* demo/antialias.c (tags: r0_7_13, r0_7_12, r0_7_11, r0_7_10):
	  added antialias.c

2000-05-26 20:56  ds

	* Makefile, demo/Makefile, demo/ao_waveform.c (tags: r0_7_13,
	  r0_7_12, r0_7_11, r0_7_10), demo/cmd.c, demo/info.c (tags:
	  r0_7_10), lib/filler.c, perl/lperl (tags: v0_8_0, r0_7_22,
	  r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14,
	  r0_7_13, r0_7_12, r0_7_11, r0_7_10): many random changes

2000-05-26 20:55  ds

	* demo/main.c (tags: r0_7_13, r0_7_12, r0_7_11, r0_7_10): patch
	  from Tomasz

2000-05-26 20:18  ds

	* comedi_calibrate/comedi_calibrate.c (tags: r0_7_10): added
	  calibration for DAQCard-ai-16xe-50

2000-03-29 19:34  ds

	* Makefile: build fixes

2000-03-29 19:23  ds

	* Makefile: fixed debian/rules

2000-03-29 19:22  ds

	* lib/Makefile (tags: r0_7_13, r0_7_12, r0_7_11, r0_7_10): remove
	  command.c from Makefile

2000-03-29 19:21  ds

	* lib/command.c: oops, didn't mean to add this

2000-03-29 19:18  ds

	* Makefile: fixed debian target in makefile

2000-03-29 19:17  ds

	* lib/: Makefile, command.c: added command support

2000-03-29 19:15  ds

	* version (tags: r0_7_10): added version file

2000-03-29 19:14  ds

	* Makefile, debian/rules, lib/Makefile: versioning fixes

2000-03-29 19:05  ds

	* Makefile, debian/changelog (tags: r0_7_10): new version

2000-03-29 19:00  ds

	* Makefile, comedi_calibrate/Makefile (tags: r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10), debian/changelog, debian/comedilib1.files
	  (tags: r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10), debian/control (tags: r0_7_10),
	  debian/copyright (tags: r0_7_18, r0_7_17, r0_7_16, r0_7_15,
	  r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10), debian/dirs,
	  debian/docs (tags: r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11,
	  r0_7_10), debian/ex.doc-base.package (tags: r0_7_16, r0_7_15,
	  r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10),
	  debian/libcomedi0.postinst (tags: r0_7_11, r0_7_10),
	  debian/libcomedi0.shlibs (tags: r0_7_12, r0_7_11, r0_7_10),
	  debian/rules, demo/Makefile, lib/Makefile: patch for debian build

2000-03-29 18:53  ds

	* demo/: inpn.c, tut2.c (utags: r0_7_10, r0_7_11, r0_7_12,
	  r0_7_13): removal of rangetype

2000-03-29 18:52  ds

	* comedi_calibrate/comedi_calibrate.c: added support for
	  pci-mio-16xe-10

2000-03-29 18:51  ds

	* include/comedi.h: added comedi.h

2000-03-06 03:34  ds

	* demo/cmd.c (tags: r0_7_9): Expanded

2000-03-06 03:25  ds

	* lib/filler.c (tags: r0_7_9): fix COMEDI_SUBD_UNUSED bug

2000-02-09 19:11  ds

	* demo/rt/: Makefile, it.c (utags: r0_7_10, r0_7_11, r0_7_12,
	  r0_7_13, r0_7_9): Updating for comedi-0.7.39 and RTLinux-2.1

2000-02-02 00:16  ds

	* lib/timed.c (tags: r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10, r0_7_9): patch from tomasz

2000-02-02 00:14  ds

	* INSTALL (tags: r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10,
	  r0_7_9), Makefile (tags: r0_7_9), README (tags: r0_7_14, r0_7_13,
	  r0_7_12, r0_7_11, r0_7_10, r0_7_9), demo/Makefile (tags: r0_7_9),
	  demo/cmd.c, demo/info.c (tags: r0_7_9), demo/inp.c (tags:
	  r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9), demo/main.c (tags:
	  r0_7_9), demo/mode2.c (tags: r0_7_9), demo/eeprom_dump.c (tags:
	  r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9), demo/inpn.c (tags:
	  r0_7_9), demo/mode1.c (tags: r0_7_10, r0_7_9), demo/mode3.c
	  (tags: r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9), demo/mode4.c
	  (tags: r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9), demo/sv.c
	  (tags: r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9), demo/tut2.c
	  (tags: r0_7_9), demo/README (tags: r0_7_10, r0_7_9),
	  demo/ao_waveform.c (tags: r0_7_9), demo/outp.c (tags: r0_7_13,
	  r0_7_12, r0_7_11, r0_7_10, r0_7_9), demo/tut1.c (tags: r0_7_13,
	  r0_7_12, r0_7_11, r0_7_10, r0_7_9), demo/rt/Makefile,
	  demo/rt/it.c, demo/rt/README (tags: r0_7_13, r0_7_12, r0_7_11,
	  r0_7_10, r0_7_9), demo/rt/ai.c (tags: r0_7_13, r0_7_12, r0_7_11,
	  r0_7_10, r0_7_9), doc/FAQ (tags: r0_7_17, r0_7_16, r0_7_15,
	  r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9),
	  doc/tutorial (tags: r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11,
	  r0_7_10, r0_7_9), doc/comedilib.sgml (tags: r0_7_9),
	  doc/html/comedilib-1.html (tags: r0_7_9),
	  doc/html/comedilib-2.html (tags: r0_7_9), doc/html/comedilib.html
	  (tags: r0_7_9), doc/html/comedilib-3.html (tags: r0_7_9),
	  doc/html/comedilib-4.html (tags: r0_7_9),
	  doc/html/comedilib-5.html (tags: r0_7_9),
	  doc/html/comedilib-6.html (tags: r0_7_9), include/comedilib.h
	  (tags: r0_7_10, r0_7_9), lib/Makefile (tags: r0_7_9),
	  lib/comedi.c (tags: r0_7_9), lib/ioctl.c (tags: r0_7_9),
	  lib/libinternal.h (tags: r0_7_9), lib/range.c (tags: r0_7_10,
	  r0_7_9), lib/sv.c (tags: r0_7_16, r0_7_15, r0_7_14, r0_7_13,
	  r0_7_12, r0_7_11, r0_7_10, r0_7_9), lib/timer.c (tags: r0_7_16,
	  r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9),
	  lib/error.c (tags: r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11,
	  r0_7_10, r0_7_9), lib/filler.c, lib/timed.c, lib/version_script
	  (tags: r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13,
	  r0_7_12, r0_7_11, r0_7_10, r0_7_9), lib/dio.c (tags: r0_7_10,
	  r0_7_9), lib/get.c (tags: r0_7_10, r0_7_9), lib/data.c (tags:
	  r0_7_10, r0_7_9), perl/Changes (tags: v0_8_0, r0_7_22, r0_7_21,
	  r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13,
	  r0_7_12, r0_7_11, r0_7_10, r0_7_9), perl/Comedi.pm (tags:
	  r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9),
	  perl/Comedi.xs (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19, r0_7_18,
	  r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11,
	  r0_7_10, r0_7_9), perl/INSTALL (tags: v0_8_0, r0_7_22, r0_7_21,
	  r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13,
	  r0_7_12, r0_7_11, r0_7_10, r0_7_9), perl/MANIFEST (tags: v0_8_0,
	  r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15,
	  r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9),
	  perl/Makefile.PL (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10, r0_7_9), perl/README (tags: r0_7_18, r0_7_17,
	  r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10,
	  r0_7_9), perl/example.perl (tags: v0_8_0, r0_7_22, r0_7_21,
	  r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13,
	  r0_7_12, r0_7_11, r0_7_10, r0_7_9), perl/info.perl (tags: v0_8_0,
	  r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15,
	  r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9), perl/lperl
	  (tags: r0_7_9), perl/mode1.perl (tags: v0_8_0, r0_7_22, r0_7_21,
	  r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13,
	  r0_7_12, r0_7_11, r0_7_10, r0_7_9), perl/mode2.perl (tags:
	  v0_8_0, r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16,
	  r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9),
	  perl/mode2lib.perl (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10, r0_7_9), perl/test.pl (tags: v0_8_0, r0_7_22,
	  r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14,
	  r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9), perl/typemap (tags:
	  v0_8_0, r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16,
	  r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9),
	  perl/Lib/Changes (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10, r0_7_9), perl/Lib/Lib.pm (tags: v0_8_0,
	  r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15,
	  r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9),
	  perl/Lib/Lib.xs (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10, r0_7_9), perl/Lib/Makefile.PL (tags: v0_8_0,
	  r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15,
	  r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9),
	  perl/Trigger/Changes (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10, r0_7_9), perl/Trigger/Makefile.PL (tags:
	  v0_8_0, r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16,
	  r0_7_15, r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9),
	  perl/Trigger/Trigger.pm (tags: v0_8_0, r0_7_22, r0_7_21, r0_7_19,
	  r0_7_18, r0_7_17, r0_7_16, r0_7_15, r0_7_14, r0_7_13, r0_7_12,
	  r0_7_11, r0_7_10, r0_7_9), perl/Trigger/test.pl (tags: v0_8_0,
	  r0_7_22, r0_7_21, r0_7_19, r0_7_18, r0_7_17, r0_7_16, r0_7_15,
	  r0_7_14, r0_7_13, r0_7_12, r0_7_11, r0_7_10, r0_7_9),
	  comedi_calibrate/Makefile (tags: r0_7_9),
	  comedi_calibrate/comedi_calibrate.c (tags: r0_7_9),
	  testing/Makefile (tags: r0_7_11, r0_7_10, r0_7_9), testing/inpn.c
	  (tags: r0_7_11, r0_7_10, r0_7_9), testing/main.c (tags: r0_7_11,
	  r0_7_10, r0_7_9), testing/mode1.c (tags: r0_7_11, r0_7_10,
	  r0_7_9), testing/mode2.c (tags: r0_7_11, r0_7_10, r0_7_9) (utags:
	  r0_7_8): Initial import of comedilib-0.7.8

2000-02-02 00:14  ds

	* INSTALL, Makefile, README, demo/Makefile, demo/cmd.c,
	  demo/info.c, demo/inp.c, demo/main.c, demo/mode2.c,
	  demo/eeprom_dump.c, demo/inpn.c, demo/mode1.c, demo/mode3.c,
	  demo/mode4.c, demo/sv.c, demo/tut2.c, demo/README,
	  demo/ao_waveform.c, demo/outp.c, demo/tut1.c, demo/rt/Makefile,
	  demo/rt/it.c, demo/rt/README, demo/rt/ai.c, doc/FAQ,
	  doc/tutorial, doc/comedilib.sgml, doc/html/comedilib-1.html,
	  doc/html/comedilib-2.html, doc/html/comedilib.html,
	  doc/html/comedilib-3.html, doc/html/comedilib-4.html,
	  doc/html/comedilib-5.html, doc/html/comedilib-6.html,
	  include/comedilib.h, lib/Makefile, lib/comedi.c, lib/ioctl.c,
	  lib/libinternal.h, lib/range.c, lib/sv.c, lib/timer.c,
	  lib/error.c, lib/filler.c, lib/timed.c, lib/version_script,
	  lib/dio.c, lib/get.c, lib/data.c, perl/Changes, perl/Comedi.pm,
	  perl/Comedi.xs, perl/INSTALL, perl/MANIFEST, perl/Makefile.PL,
	  perl/README, perl/example.perl, perl/info.perl, perl/lperl,
	  perl/mode1.perl, perl/mode2.perl, perl/mode2lib.perl,
	  perl/test.pl, perl/typemap, perl/Lib/Changes, perl/Lib/Lib.pm,
	  perl/Lib/Lib.xs, perl/Lib/Makefile.PL, perl/Trigger/Changes,
	  perl/Trigger/Makefile.PL, perl/Trigger/Trigger.pm,
	  perl/Trigger/test.pl, comedi_calibrate/Makefile,
	  comedi_calibrate/comedi_calibrate.c, testing/Makefile,
	  testing/inpn.c, testing/main.c, testing/mode1.c, testing/mode2.c:
	  Initial revision