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
|
2005-02-20 lirc <lirc@k7>
* doc/html-source/index.html, setup.sh, ANNOUNCE, configure.in, NEWS:
lirc-0.7.1pre2 snapshot release
2005-02-19 lirc <lirc@k7>
* drivers/lirc_streamzap/lirc_streamzap.c:
minimise error in signal length
* drivers/lirc_dev/lirc_dev.h: increased MAX_IRCTL_DEVICES to 4
* drivers/lirc_serial/.cvsignore, drivers/lirc_sir/.cvsignore, drivers/lirc_streamzap/.cvsignore, drivers/lirc_mceusb/.cvsignore, drivers/lirc_parallel/.cvsignore, drivers/lirc_sasem/.cvsignore, drivers/lirc_i2c/.cvsignore, drivers/lirc_imon/.cvsignore, drivers/lirc_it87/.cvsignore, drivers/lirc_bt829/.cvsignore, drivers/lirc_dev/.cvsignore, drivers/lirc_gpio/.cvsignore, drivers/lirc_atiusb/.cvsignore:
ignore .tmp_versions
* drivers/lirc_streamzap/lirc_streamzap.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c, drivers/lirc_it87/lirc_it87.c, drivers/lirc_mceusb/lirc_mceusb.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_sasem/lirc_sasem.c, drivers/lirc_i2c/lirc_i2c.c, drivers/lirc_igorplugusb/lirc_igorplugusb.c, drivers/lirc_imon/lirc_imon.c, drivers/lirc_dev/lirc_dev.c, drivers/lirc_dev/lirc_dev.h, drivers/lirc_gpio/lirc_gpio.c, drivers/kcompat.h, drivers/lirc_atiusb/lirc_atiusb.c, drivers/lirc_bt829/lirc_bt829.c, TODO:
module reference counting is now done properly using an owner field in the plugin struct (2.6 and higher)
* drivers/lirc_serial/lirc_serial.c: removed unnecessary spinlock:
lirc_dev prevents calling set_use_inc on a plugin already in use
* remotes/atiusb/lircd.conf.atiusb:
added ATI Sapphire Remote Bob II USB
* daemons/receive.c, NEWS: slight change to decode algorithm:
decoding was very unreliable since release 0.6.6 for Motorola
protocol which is mostly used by Grundig remotes
2005-02-12 lirc <lirc@k7>
* drivers/lirc_streamzap/lirc_streamzap.c: fixed CVS keyword
* remotes/leadtek/lircd.conf.PVR2000, configure.in, drivers/lirc_i2c/lirc_i2c.c, NEWS, setup.data:
added support for Winfast PVR2000 TV card
* daemons/receive.c, drivers/lirc_streamzap/.cvsignore, drivers/lirc_streamzap/lirc_streamzap.c, drivers/lirc_streamzap/Makefile.am, drivers/Makefile.am, remotes/streamzap/lircd.conf.streamzap, configure.in, NEWS, setup.data:
added support for Streamzap PC remote
2005-02-07 lirc <lirc@k7>
* daemons/dump_config.c, daemons/irrecord.c: support multi-code buttons
2005-02-05 lirc <lirc@k7>
* drivers/lirc_sir/lirc_sir.c:
removed obsolete calls to enable_irq/disable_irq
* daemons/config_file.c: fixed bug related to multi-code buttons
2005-02-01 venkyr <venkyr@k7>
* drivers/lirc_imon/lirc_imon.c:
lirc_unregister_plugin is now properly handled on USB disconnects.
2005-01-29 venkyr <venkyr@k7>
* drivers/lirc_imon/lirc_imon.c:
Added support for external iMON IR recevier.
Added support for VFDs with 6-pkt protocol.
Fixes for gcc-3.4 issues.
2005-01-29 lirc <lirc@k7>
* remotes/atiusb/lircd.conf.atiusb: fixed wrong code
2005-01-26 lirc <lirc@k7>
* drivers/lirc_imon/.cvsignore, drivers/lirc_imon/lirc_imon.c, drivers/lirc_imon/Makefile.am, remotes/imon/lircd.conf.imon, configure.in, setup.data, NEWS:
added support for Soundgraph iMON MultiMedian IR/VFD (Venky Raju)
* remotes/atiusb/lircd.conf.atiusb: new X10 remote variation
2005-01-26 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
make sure to do async unlinks everywhere
2005-01-23 lirc <lirc@k7>
* doc/html-source/head.html: added favicon
2005-01-22 lirc <lirc@k7>
* doc/html-source/index.html, ANNOUNCE, configure.in, NEWS, setup.sh:
lirc-0.7.1pre1 release
* daemons/hw_mouseremote.c, daemons/hw_mouseremote.h: added CVS Id tags
* remotes/x10/lircd.conf.mouseremote, remotes/x10/lircmd.conf.mouseremote, configure.in, daemons/hw_mouseremote.c, daemons/hw_mouseremote.h, daemons/hw-types.c, daemons/Makefile.am, daemons/serial.c, daemons/serial.h, NEWS, setup.data:
added support for X10 MouseRemote RF Receiver (Geoffrey Hausheer)
2005-01-14 lirc <lirc@k7>
* drivers/lirc_i2c/lirc_i2c.c, NEWS:
added support for Hauppauge PVR150 (Per Jnsson)
2005-01-07 lirc <lirc@k7>
* drivers/lirc_parallel/lirc_parallel.c:
use parport macros to call irq functions
2004-12-31 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c:
interrupt handler functional again...
* drivers/lirc_serial/lirc_serial.c: corrected appearance of warning
2004-12-30 lirc <lirc@k7>
* drivers/lirc_sir/lirc_sir.c, drivers/lirc_it87/lirc_it87.c, drivers/lirc_serial/lirc_serial.c, NEWS:
get rid of check_region (breaks 2.2.x compatibility)
* drivers/lirc_i2c/lirc_i2c.c: removed unnecessary include
2004-12-27 lirc <lirc@k7>
* remotes/atiusb/lircd.conf.atiusb:
added more buttons for Q-Sonic Master Remote 6in1 PC
2004-12-25 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c:
parameter to choose transmitter polarity added (Stefan Schmidt)
* drivers/kcompat.h, drivers/lirc_i2c/lirc_i2c.c:
added I2C compatibility code for non 2.6 kernels (Jerome Brock)
* doc/html-source/configure.html, doc/html-source/index.html:
Using multiple different devices simultaneously
* drivers/lirc_serial/lirc_serial.c:
shared interrupts: handle only if really for us
2004-12-19 lirc <lirc@k7>
* remotes/hauppauge/lircd.conf.hauppauge: no spaces allowed in names
* remotes/hauppauge/lircd.conf.hauppauge:
added configuration for PVR-350
* doc/html-source/install.html:
added note about Linux input layer config file
2004-12-18 lirc <lirc@k7>
* daemons/hw-types.c, acconfig.h, configure.in:
3 additional checks for header files (patch by Matthias Ringwald)
2004-12-01 lirc <lirc@k7>
* drivers/lirc_i2c/lirc_i2c.c: request ivtv for PVR-250 as well
* daemons/hw_devinput.c: fixed EVIOCGRAB ioctl call
* drivers/lirc_serial/lirc_serial.c:
allow interrupt sharing (patch from Jason Miller)
2004-12-01 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c: patch from an ati-rw2 user.
2004-11-28 lirc <lirc@k7>
* tools/Makefile.am:
the library revision should have been incremented in the last release
2004-11-25 lirc <lirc@k7>
* setup.sh: even cleaner solution for shell search problem
* setup.sh:
not all shells search for sourced files in the current directory
* drivers/lirc_sir/lirc_sir.c: fixed build for SA1100 machines
2004-11-21 lirc <lirc@k7>
* daemons/lircd.c, daemons/transmit.c, TODO:
transmit behaviour: if(min_repeat>0 && remaining_gap<10000) directly send out all signals (should fix problems with JVC/Echostar dish box described by Karl Bongers)
2004-11-20 lirc <lirc@k7>
* daemons/receive.c:
fixed bug affecting repeat handling with remotes that have a repeat signal,
repeats are only reported now when the repeat signal is received
* daemons/hw_ea65.c, daemons/Makefile.am: cosmetic changes
* configure.in, daemons/hw_ea65.c, daemons/hw_ea65.h, daemons/hw-types.c, daemons/Makefile.am, remotes/ea65/lircd.conf.ea65, remotes/ea65/lircrc.ea65, setup.data, NEWS:
added support for AOpen XC Cube EA65, EA65-II (Max Krasnyansky)
* tools/irxevent.c: removed DEBUG flag
* remotes/atiusb/lircd.conf.atiusb:
added configuration for nvidia personal cinema remote UR88A (Phil Speights)
* daemons/hw_default.c, daemons/hw_default.h, daemons/hw_uirt2_raw.c, daemons/transmit.c, daemons/transmit.h:
hide optimisation from upper layers
* doc/html-source/configure.html, daemons/lircmd.c, NEWS:
added IGNORE directive (patch by Steven Mueller)
* drivers/lirc_serial/lirc_serial.c: wait without wait queue
* daemons/dump_config.c: only print out actually used bits
* doc/html-source/index.html, ANNOUNCE, configure.in, NEWS, setup.sh:
started development for 0.7.1
2004-11-14 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c: Fixes memory freeing issues
Remote Wonder II now supported using one LIRC device
VERY EXPERIMENTAL!
2004-11-07 lirc <lirc@k7>
* NEWS: release delayed due to failed regression tests
* drivers/lirc_sasem/lirc_sasem.c: driver does not compile on 2.6
* drivers/lirc_parallel/lirc_parallel.c: fixed 64-bit division trouble
2004-11-06 lirc <lirc@k7>
* configure.in: fixed caraca config file selection
* configure.in, NEWS: 0.7.0 release
2004-10-29 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c: add better debugging
* drivers/lirc_atiusb/lirc_atiusb.c:
major changes to better support remote wonder II (two inbound endpoints) -- still need to determine what data needs to be ignored from each endpoint
2004-10-23 lirc <lirc@k7>
* NEWS, setup.data: added TriTan Technology TView95
* tools/xmode2.c: fixed core dump when font is missing
2004-10-19 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
minor change; display endpoint in hex
2004-10-11 lirc <lirc@k7>
* daemons/hw_devinput.c: fix usage of pre/post data with devinput
2004-10-10 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
add a little more debugging information
2004-10-09 lirc <lirc@k7>
* doc/html-source/index.html, ANNOUNCE, configure.in, NEWS, setup.sh:
lirc-0_7_0pre8 pre-release
* daemons/hw_devinput.c: support repeats
* autogen.sh: updated links
2004-10-08 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c: remove old macro
* drivers/lirc_atiusb/lirc_atiusb.c:
kernel 2.4 doesn't support multiple usb tables per module; changed method for determining if we're using a remote wonder 1 or 2.
2004-09-26 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
it appears that kernel 2.4 automagically resubmits urb after transfer completion.
* drivers/lirc_atiusb/lirc_atiusb.c:
add -EPIPE error for good measure :)
* setup.data:
Updated lirc_atiusb description to include remote wonder II support
* drivers/lirc_atiusb/lirc_atiusb.c:
implemented code for ATI's Remote Wonder II (based on patch from Falk Zoll)
2004-09-25 lirc <lirc@k7>
* remotes/atiusb/lircd.conf.atiusb:
added some additional model information
* contrib/lirc.rules, doc/html-source/install.html, configure.in:
added hints for devfs and sysfs
2004-09-11 lirc <lirc@k7>
* daemons/hw_atilibusb.c, daemons/hw-types.c, acconfig.h, configure.in, daemons/Makefile.am, setup.data, NEWS:
added userspce USB driver for ATI remotes (Michael Gold)
2004-09-05 lirc <lirc@k7>
* drivers/lirc_sir/lirc_sir.c, drivers/lirc_it87/lirc_it87.c, drivers/lirc_mceusb/lirc_mceusb.c, drivers/lirc_serial/lirc_serial.c, drivers/kcompat.h, drivers/lirc_dev/lirc_dev.c, drivers/lirc_i2c/lirc_i2c.c:
sysfs and devfs clean-ups (David Hrdeman),
compilation fixes
2004-09-04 lirc <lirc@k7>
* remotes/atiusb/lircd.conf.atiusb: added another config variation
2004-09-02 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
linux 2.6.8.1 atiusb fix patch from Martin Tomasek <mtd@centrum.cz>
2004-08-28 lirc <lirc@k7>
* daemons/receive.c: bugfix for serial protocol decoder
2004-08-21 lirc <lirc@k7>
* drivers/lirc_parallel/lirc_parallel.c:
get rid of floating point operations
2004-08-20 lirc <lirc@k7>
* remotes/mceusb/lircd.conf.mceusb:
additional buttons for HP Media Center remote control
2004-08-09 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
Patch from Reynald Poittevin to fix remote id stripping.
2004-08-07 lirc <lirc@k7>
* drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c, drivers/lirc_dev/lirc_dev.c, drivers/lirc_dev/lirc_dev.h, drivers/lirc_gpio/lirc_gpio.c, drivers/lirc_it87/lirc_it87.c, drivers/lirc_bt829/lirc_bt829.c:
make more stuff static (David Hrdeman)
* drivers/lirc_sir/lirc_sir.c, drivers/lirc_igorplugusb/lirc_igorplugusb.c, drivers/lirc_it87/lirc_it87.c, drivers/lirc_mceusb/lirc_mceusb.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_atiusb/lirc_atiusb.c, drivers/lirc_bt829/lirc_bt829.c, drivers/lirc_dev/lirc_dev.c, drivers/lirc_gpio/lirc_gpio.c, drivers/lirc_i2c/lirc_i2c.c:
harmonize debugging printk
* drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_sasem/lirc_sasem.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c, drivers/lirc_dev/lirc_dev.c, drivers/lirc_gpio/lirc_gpio.c, drivers/lirc_i2c/lirc_i2c.c, drivers/lirc_igorplugusb/lirc_igorplugusb.c, drivers/lirc_it87/lirc_it87.c, drivers/lirc_mceusb/lirc_mceusb.c, drivers/kcompat.h, drivers/lirc_atiusb/lirc_atiusb.c, drivers/lirc_bt829/lirc_bt829.c:
harmonize module information (David Hrdeman)
* drivers/lirc_atiusb/lirc_atiusb.c, drivers/lirc_igorplugusb/lirc_igorplugusb.c:
corrected minimum version
* drivers/lirc_dev/lirc_dev.c:
devfs and sysfs support for 2.6 (David Hrdeman)
2004-08-05 lirc <lirc@k7>
* configure.in, drivers/lirc_igorplugusb/lirc_igorplugusb.c, drivers/lirc_igorplugusb/Makefile.am, drivers/Makefile.am, setup.data, NEWS:
added support for Igor Cesko's USB IR receiver (Jan Hochstein)
* drivers/lirc_dev/lirc_dev.c: check for error
2004-07-31 lirc <lirc@k7>
* remotes/atiusb/lircd.conf.atiusb:
added config file for another variation of this receiver
2004-07-26 lirc <lirc@k7>
* configure.in: fixed typo in possible_drivers
2004-07-25 lirc <lirc@k7>
* doc/html-source/index.html, ANNOUNCE, configure.in, NEWS, setup.sh:
lirc-0_7_0pre7 release
* drivers/lirc_mceusb/lirc_mceusb.c:
support for 2.6 kernels (Malte Rohde)
2004-07-24 lirc <lirc@k7>
* remotes/pcmak/lircd.conf.pcmak, remotes/pcmak/lircmd.conf.pcmak, remotes/pcmak/lircrc.pcmak, configure.in, daemons/hw_pcmak.c, daemons/hw_pcmak.h, daemons/hw-types.c, daemons/Makefile.am, NEWS, setup.data, setup.sh:
added support for ELMAK PCMAK (Pawel Nowak)
2004-07-18 lirc <lirc@k7>
* configure.in, setup.data:
convenience entries for Extigy USB sound card
2004-07-11 lirc <lirc@k7>
* configure.in, doc/html-source/install.html:
changed link for Technisat driver
2004-06-19 lirc <lirc@k7>
* ANNOUNCE, configure.in, doc/html-source/index.html, NEWS, setup.sh:
lirc-0.7.0pre6
* configure.in, drivers/lirc_sasem/.cvsignore, drivers/lirc_sasem/lirc_sasem.c, drivers/lirc_sasem/lirc_sasem.h, drivers/lirc_sasem/Makefile.am, drivers/Makefile.am, remotes/sasem/lircd.conf.dignhv5, setup.data, NEWS:
added support for Sasem OnAir Remocon-V (Oliver Stabel)
2004-06-13 lirc <lirc@k7>
* ANNOUNCE, configure.in, doc/html-source/index.html, NEWS, setup.sh:
lirc-0.7.0pre5
* doc/html-source/help.html:
list archive at geocrawler seems to have disappeared
2004-05-30 lirc <lirc@k7>
* tools/mode2.c: fixed compiler warning (Michael Mauch)
2004-05-23 lirc <lirc@k7>
* remotes/hercules/lircd.conf.smarttv_stereo, configure.in, data2setup.sh, setup.data:
added config file for Hercules SmartTV Stereo TV card (Dimitris Michail)
2004-05-23 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
oops. forgot to increment the version #define
2004-05-20 lirc <lirc@k7>
* remotes/atiusb/lircd.conf.atiusb-unknown_ch, remotes/atiusb/lircd.conf.atiusb, configure.in:
added new atiusb config files,
general clean-up
2004-05-16 lirc <lirc@k7>
* drivers/lirc_parallel/lirc_parallel.c:
inteface change in 2.6.4 (Stian Davidsen)
2004-05-06 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
attempt to handle repeats, somewhat based on the gatos code
-- new module parameter, repeat = repeat timeout (1/100 sec)
2004-04-28 pmiller9 <pmiller9@k7>
* remotes/atiusb/lircd.conf.atiusb: use channel 1 or set unique=0
* drivers/lirc_atiusb/lirc_atiusb.c:
- clearly print received data and channel (debug)
- add channel acceptance bit mask option
- add channel-specific option (default to non-unique, where the channel code is removed from key-code)
- bump version to 0.4
*** channel number not tested with 4/5-byte Dutch remotes ***
2004-04-27 lirc <lirc@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
usb structure change in 2.6.5 (Kenneth Aafloy)
* drivers/lirc_it87/lirc_it87.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_sir/lirc_sir.c, drivers/kcompat.h, drivers/lirc_atiusb/lirc_atiusb.c, drivers/lirc_bt829/lirc_bt829.c, TODO:
added missing module reference counting,
new MOD_[INC|DEC]_USE_COUNT macros for 2.6
* daemons/receive.c:
reset state on new keypress for remotes that use toggle_mask
* drivers/Makefile.am, drivers/Makefile.common: added Makefile.common
* drivers/lirc_gpio/lirc_gpio.c: return if bttv_get_cardinfo() fails
2004-04-25 lirc <lirc@k7>
* drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/.cvsignore, drivers/lirc_serial/Makefile.am, drivers/lirc_sir/.cvsignore, drivers/lirc_sir/Makefile.am, drivers/lirc_i2c/Makefile.am, drivers/lirc_it87/.cvsignore, drivers/lirc_it87/Makefile.am, drivers/lirc_mceusb/.cvsignore, drivers/lirc_mceusb/Makefile.am, drivers/lirc_parallel/.cvsignore, drivers/lirc_bt829/.cvsignore, drivers/lirc_bt829/Makefile.am, drivers/lirc_dev/.cvsignore, drivers/lirc_dev/Makefile.am, drivers/lirc_gpio/.cvsignore, drivers/lirc_gpio/Makefile.am, drivers/lirc_i2c/.cvsignore, daemons/lircmd.c, drivers/lirc_atiusb/.cvsignore, drivers/lirc_atiusb/Makefile.am, acinclude.m4, configure.in, NEWS, TODO:
install .ko modules on 2.6
2004-04-24 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c:
added IgorPlug to parameter list (patch by Martin Lillepuu)
2004-04-10 lirc <lirc@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
renamed KERNEL26 define to be consistent with all other modules
2004-04-10 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
fix lirc #includes such it'll compile under kernel 2.6 from lirc's source
2004-04-09 lirc <lirc@k7>
* setup.sh:
work-around for problems reported with cdialog 0.9b-20040316
* drivers/lirc_it87/lirc_it87.c, drivers/lirc_mceusb/Makefile.am, drivers/lirc_i2c/lirc_i2c.c, drivers/kcompat.h, drivers/lirc_bt829/lirc_bt829.c, drivers/lirc_bt829/Makefile.am, drivers/lirc_dev/lirc_dev.h:
more drivers that compile with 2.6
2004-04-04 lirc <lirc@k7>
* drivers/kcompat.h:
added note about CONFIG_MODULE_UNLOAD for 2.6 kernels
2004-03-30 lirc <lirc@k7>
* drivers/kcompat.h:
fixed warning about redefinition of daemonize in kernels with modversions enabled
2004-03-29 lirc <lirc@k7>
* configure.in: fixed setting of default values
2004-03-28 lirc <lirc@k7>
* drivers/kcompat.h: fixed unsafe defines
* drivers/lirc_sir/lirc_sir.c, drivers/lirc_gpio/lirc_gpio.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_dev/lirc_dev.c, drivers/kcompat.h:
part of the drivers compile now with 2.6 kernels
* drivers/lirc_mceusb/.cvsignore:
added .cvsignore for lirc_mceusb directory
2004-03-25 lirc <lirc@k7>
* doc/man-source/irxevent.inc: reformatted for nicer man page output
* doc/man-source/irxevent.inc, tools/irxevent.c:
added Focus flag (Rob Spearman),
restructured code to actually match the documentation
2004-03-15 lirc <lirc@k7>
* drivers/lirc_dev/lirc_dev.c:
fixed problem with lirc_dev thread exiting too early
2004-03-07 lirc <lirc@k7>
* tools/lirc_client.c, acconfig.h, doc/html-source/configure.html, doc/html-source/install.html, NEWS:
system-wide lircrc (Michal Svec)
2004-03-06 lirc <lirc@k7>
* drivers/lirc_mceusb/lirc_mceusb.c: cleanups
2004-03-02 lirc <lirc@k7>
* drivers/lirc_i2c/lirc_i2c.c:
fixed endianness issue in Hauppauge driver
* daemons/lircd.c: --listen takes optional argument
2004-02-29 lirc <lirc@k7>
* remotes/mceusb/lircd.conf.mceusb: fixed eps and gap value
* drivers/Makefile.am: added Makefile.kernel to EXTRA_DIST
* daemons/Makefile.am: fixed irrecord file list
* drivers/lirc_it87/lirc_it87.c, drivers/lirc_mceusb/lirc_mceusb.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c, drivers/lirc_dev/lirc_dev.h, drivers/lirc_gpio/lirc_gpio.c, drivers/lirc_i2c/lirc_i2c.c, drivers/lirc_bt829/lirc_bt829.c, drivers/lirc_dev/lirc_dev.c, NEWS:
replaced get_key interface with more flexible add_to_buf method
2004-02-11 lirc <lirc@k7>
* tools/mode2.c: check for character device
2004-02-08 lirc <lirc@k7>
* daemons/config_file.c, daemons/config_file.h, daemons/dump_config.c, daemons/ir_remote.h, daemons/receive.c, daemons/transmit.c:
added preliminary support for serial protocols
2004-02-06 lirc <lirc@k7>
* daemons/dump_config.c: write rc6_mask
2004-02-05 lirc <lirc@k7>
* daemons/irrecord.c: don't set ptrail for pulse encoded remotes
2004-02-04 lirc <lirc@k7>
* daemons/irrecord.c: prevent infinite loop during toggle bit detection
2004-02-02 lirc <lirc@k7>
* remotes/creative/lircd.conf.livedrive, daemons/hw_livedrive_common.h, daemons/hw_livedrive_midi.c, daemons/hw_livedrive_seq.c:
added support for audigy2 livedrive controls (Stephen Beahm)
2004-01-31 lirc <lirc@k7>
* daemons/irrecord.c: apply transform functions to all remote configs
2004-01-31 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c: fix couple typos
* drivers/lirc_atiusb/lirc_atiusb.c:
forgot to submit urb for receiving!
tested and working w/ 2.6 (I finally got lirc to compile)
2004-01-29 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
lirc_dev requires set_use_inc/dec functions to be set, otherwise it crashes
2004-01-27 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c: fix kernel oops on device probe
2004-01-27 lirc <lirc@k7>
* daemons/hw_udp.c: prevent integer overflow
2004-01-24 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c: request module "lirc_dev"
* drivers/lirc_atiusb/lirc_atiusb.c:
fixed memset() kernel seg fault problem
major updates for kernel 2.6 support (now compiles & loads!)
removed set_use_inc/dec functions (not needed for usb?)
code clean ups
2004-01-19 ranty <ranty@k7>
* drivers/Makefile.kernel:
Added missing file from the module building change.
2004-01-18 ranty <ranty@k7>
* drivers/lirc_sir/Makefile.am, drivers/lirc_atiusb/Makefile.am, drivers/lirc_bt829/Makefile.am, drivers/lirc_dev/Makefile.am, drivers/lirc_gpio/Makefile.am, drivers/lirc_i2c/Makefile.am, drivers/lirc_it87/Makefile.am, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am:
Hack to make kernel module building more reliable, it should, maybe with small
tunning, work for 2.6 kernels.
2004-01-18 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
started adding kernel 2.6 usb changes based on Brian Julin's GATOS ati_remote 2.6 port
* drivers/lirc_atiusb/lirc_atiusb.c:
nicer way to free kernel memory on failure
2004-01-13 lirc <lirc@k7>
* configure.in, drivers/lirc_dev/lirc_dev.c, drivers/lirc_mceusb/lirc_mceusb.c, drivers/lirc_mceusb/Makefile.am, drivers/Makefile.am, remotes/mceusb/lircd.conf.mceusb, setup.data, NEWS:
added support for Windows Media Center Remotes (Dan Conti)
* daemons/config_file.c, daemons/irrecord.c, daemons/ir_remote.h, daemons/Makefile.am, daemons/receive.c, daemons/transmit.c:
added rc6_mask for better RC6 variations support
2004-01-12 lirc <lirc@k7>
* acconfig.h, configure.in, drivers/lirc_serial/lirc_serial.c, NEWS, setup.sh:
fixed typo
2004-01-06 lirc <lirc@k7>
* setup.sh: fixed type
2003-12-30 lirc <lirc@k7>
* doc/html-source/install.html, drivers/lirc_sir/lirc_sir.c, NEWS:
fine-tuning of lirc_sir driver
* daemons/hw_audio_alsa.c, daemons/hw-types.c, doc/html-source/audio-alsa.html, doc/release-html.sh, acconfig.h, configure.in, contrib/lirc.redhat, daemons/Makefile.am, NEWS, setup.data:
IR receiver IC connected to auido input using ALSA (Andrew Zabolotny)
* daemons/hw_livedrive_common.c, daemons/hw_livedrive_midi.c, daemons/hw_livedrive_seq.c:
timing issues fixed (Stephen Beahm)
2003-12-29 pmiller9 <pmiller9@k7>
* remotes/atiusb/lircd.conf.atiusb-unknown_ch:
example atiusb configuration file for (unknown channel).
2003-12-28 lirc <lirc@k7>
* daemons/hw_devinput.c:
get exclusive access to input device (Arkadiusz Miskiewicz)
2003-12-27 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c: fix for Igor receiver
* daemons/lircd.c: fixed typo in pidfile command line processing
2003-11-23 lirc <lirc@k7>
* configure.in: fixed --driver=any build failure
2003-11-17 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c: fix lirc_dev buffer init
2003-11-14 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
different method to copy received buffer to lirc
renamed BUFLEN to USB_BUFLEN as it is now defined in lirc_dev.h
2003-11-13 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
why are some people having problems with the code length? works perfectly on my ati remote....?
2003-11-12 lirc <lirc@k7>
* daemons/hw_default.c: major number sanity check
2003-11-11 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
properly handles 4 and 5 byte codes
2003-11-10 lirc <lirc@k7>
* tools/lirc_client.c:
repeat parameter was not respected for config entries where button entry is not set (reported by Peter Kundrat)
* doc/html-source/configure.html, tools/lirc_client.c, NEWS:
added include command to .lircrc config file (Ingo van Lil)
* daemons/hw_creative_infracd.c: fixed potential buffer overflow
2003-11-09 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
Apparently, some remotes emit both 4 and 5 byte codes. This change accepts codes >= 4. we can assume that the code will be <= maxp <= BUF_LEN. I'm not sure how LIRC/LIRC_DEV will handle bytes_in_key = 4 with a 5 byte input...
One user reports:
The remote which is described in German including a picture under
http://www.pearl.de/product.jsp?pdid=PE4444&catid=5005&rate=5
has some mouse movement keys. These and the corresponding mouse buttons have
4-byte codes (7 codes). The rest which are more than 30 keys have 5-byte
codes.
2003-11-07 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
report received data length (debug)
remove unnecessary #defines
2003-11-06 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
appears to fix inc/dec problem - we shouldn't disconnect the remote on dec, but wait until the remote receiver is unplugged or the module is unloaded. On inc, we should connect the remote only if it hasn't been already connected (the original problem).
2003-11-02 pmiller9 <pmiller9@k7>
* drivers/lirc_atiusb/lirc_atiusb.c: fix typos
* drivers/lirc_atiusb/lirc_atiusb.c: keep track of use count
add extra safety checks for set_use_inc/dec()
2003-11-02 lirc <lirc@k7>
* drivers/lirc_gpio/lirc_gpio.c:
generated codes for this card did not match config file since 0.6.6
* drivers/lirc_atiusb/lirc_atiusb.c: removed superfluous IRUNLOCK
* daemons/irrecord.c: don't touch *_data_bits if remote has pre or post
2003-10-29 pmiller9 <pmiller9@k7>
* setup.data:
change description of atiusb to include NVidia and X10 RF remotes (same remote, but with a different usb product id)
* drivers/lirc_atiusb/lirc_atiusb.c:
support other X10 USB product IDs (definitions found in windows ini file)
attempt to fix multiple access problem
2003-10-26 lirc <lirc@k7>
* daemons/hw_uirt2.c, daemons/hw_uirt2_common.c, daemons/hw_uirt2_common.h, daemons/hw_uirt2_raw.c:
better transmit algorithm implemented
* drivers/lirc_gpio/lirc_gpio.c: clearer debug output
2003-10-12 lirc <lirc@k7>
* drivers/lirc_gpio/lirc_gpio.c, NEWS, setup.data:
added support for Prolink Pixelview PV-BT878P+ (Rev.4C,8E)
* configure.in, daemons/hw-types.c, daemons/hw_uirt2.c, daemons/hw_uirt2_common.c, daemons/hw_uirt2_common.h, daemons/hw_uirt2_raw.c, daemons/Makefile.am, NEWS, setup.data:
added support for UIRT2 (Mikael Magnusson)
* daemons/hw_tira.c, setup.data: corrected bug, typo (Gregory McLean)
2003-10-07 ranty <ranty@k7>
* drivers/lirc_atiusb/.cvsignore:
Adapt to atiusb, .cvsignore was blindly copied from lirc_serial.
* drivers/lirc_atiusb/.cvsignore: I had forgotten .cvsignore :-/
2003-10-05 lirc <lirc@k7>
* setup.sh: removed Karsten's email on his request
2003-09-28 lirc <lirc@k7>
* drivers/lirc_gpio/lirc_gpio.c, remotes/leadtek/lircd.conf.RM-0010:
use correct codes
* doc/lirc.css: center HR's
2003-09-23 ranty <ranty@k7>
* drivers/lirc_atiusb/lirc_atiusb.c:
Use wake_up() instead of wake_up_sync() since the later is not available until
2.4.20 kernels and wake_up() seams enough.
2003-09-21 lirc <lirc@k7>
* configure.in, daemons/hw_tira.c, daemons/hw_tira.h, daemons/hw-types.c, daemons/Makefile.am, data2setup.sh, NEWS, setup.data, setup.sh:
added support for Home Electronics Tira USB device (Gregory McLean)
* daemons/config_file.c, daemons/config_file.h, daemons/ir_remote.c, daemons/ir_remote.h, daemons/Makefile.am, TODO:
added preliminary support for special Pioneer protocol feature
2003-08-15 lirc <lirc@k7>
* configure.in, daemons/hw_devinput.c, daemons/hw-types.c, daemons/Makefile.am, NEWS, setup.data:
added support for Linux input layer (Oliver Endriss, Jack Thomasson)
* acconfig.h, configure.in, daemons/config_file.c, daemons/ir_remote.c, daemons/ir_remote.h, NEWS, setup.sh:
enabled lircd to optinally decode buttons that are not included in the config file
* daemons/config_file.c, daemons/ir_remote.c, daemons/ir_remote.h:
added reverse flag compatibility mode
* doc/html-source/configure.html, NEWS, tools/lirc_client.c, tools/lirc_client.h:
added delay directive to .lircrc config file (Tobias Blomberg)
2003-08-05 lirc <lirc@k7>
* doc/html-source/install.html:
clarification about lirc_gpio parameters added
2003-08-05 ranty <ranty@k7>
* drivers/lirc_dev/lirc_dev.c:
If p->get_queue is provided there should be no need for read, poll or ioctl.
2003-08-03 lirc <lirc@k7>
* configure.in, drivers/lirc_i2c/lirc_i2c.c, remotes/creative/lircd.conf.breakoutbox, setup.data:
patches for Asus TV-Box and Creative PersonalCinema BreakOut-Box
2003-07-21 ranty <ranty@k7>
* drivers/lirc_serial/lirc_serial.c: lirc_buffer_init may fail;
removed leftover comment.
2003-07-19 lirc <lirc@k7>
* doc/html-source/install.html:
added section on kernel recompile shutcut
* daemons/hw_bte.c: log flood fixed (vss)
2003-06-17 ranty <ranty@k7>
* configure.in, drivers/lirc_atiusb/lirc_atiusb.c, drivers/lirc_atiusb/Makefile.am, drivers/Makefile.am, NEWS, setup.data:
added support for ATI RF Remote Wonder (Paul Miller).
2003-06-07 lirc <lirc@k7>
* tools/irexec.c: choose program name (patch by Vidar Holen)
* remotes/iodata/lircd.conf.gvbctv5pci, configure.in, drivers/lirc_gpio/lirc_gpio.c, setup.data, NEWS:
added support for I-O Data GV-BCTV5/PCI TV card (Jens C. Rasmussen)
2003-05-24 lirc <lirc@k7>
* daemons/hw_creative_infracd.c: fixed too small buffer bug
* drivers/lirc_i2c/lirc_i2c.c, NEWS, setup.data: corrected company name
2003-05-12 ranty <ranty@k7>
* autogen.sh: Create setup-driver.sh so CVS users don't miss it.
2003-05-07 ranty <ranty@k7>
* .cvsignore: ignore setup-driver.sh
* setup.data: Remove the obsolet old_* stuff.
2003-05-07 lirc <lirc@k7>
* doc/man-source/irw.inc, remotes/creative/lircd.conf.infracd, daemons/hw_creative_infracd.c, daemons/hw_creative_infracd.h, daemons/hw-types.c, daemons/Makefile.am, setup.data, configure.in, NEWS:
added support for Creative iNFRA CDROMO (Leonid Froenchenko)
2003-05-07 ranty <ranty@k7>
* data2setup.sh, Makefile.am, setup.data, setup.sh:
Move the "hardware selection menu" to a machine readable format.
2003-05-04 lirc <lirc@k7>
* daemons/lircd.c, daemons/irrecord.c: fixed bug in device selection,
order of --device and --driver option was relevant but shouldn't be
* doc/html-source/install.html, drivers/lirc_gpio/lirc_gpio.c:
allow forcing bttv id
2003-05-04 ranty <ranty@k7>
* drivers/lirc_gpio/lirc_gpio.c:
Use labeled (.FIELDNAME =) initializing for 'plugin'.
* drivers/lirc_dev/lirc_dev.c:
Remove extra lirc_buffer_unlock and make irctl_read return if it already wrote
some data and the buffer is empty.
2003-05-03 lirc <lirc@k7>
* remotes/hauppauge/lircd.conf.hauppauge:
added config for new Hauppauge PVR models
2003-05-03 ranty <ranty@k7>
* daemons/Makefile.am:
synchronize EXTRA_lircd_SOURCES and EXTRA_irrecord_SOURCES.
2003-05-02 ranty <ranty@k7>
* drivers/lirc_dev/lirc_dev.h: make lirc_buffer_full overflow tolerant.
* drivers/lirc_dev/lirc_dev.h:
Replace the semaphore in 'struct lirc_buffer' with an spinlock.
2003-05-01 lirc <lirc@k7>
* daemons/lircd.c, daemons/hw_default.c:
/dev/lirc can also be socket (for devices that use bidirectional communication through a helper daemon)
* tools/irsend.c: can specify socket name on command line
2003-04-27 lirc <lirc@k7>
* remotes/asus/lircd.conf.asus, drivers/lirc_i2c/lirc_i2c.c, configure.in, NEWS, setup.sh:
added support for VisionTek BreakOut-Box (Stefan Jahn)
2003-04-21 lirc <lirc@k7>
* remotes/creative/lircd.conf.livedrive: rm900 is a subset of rm1000w
* daemons/hw_livedrive.c, daemons/hw_livedrive_common.c, daemons/hw_livedrive_common.h, daemons/hw_livedrive_midi.c, daemons/hw_livedrive_seq.c, daemons/hw-types.c, daemons/Makefile.am, configure.in, setup.sh, acconfig.h:
split livedrive support into two separate modules for OSS/Alsa
2003-04-20 lirc <lirc@k7>
* drivers/lirc_gpio/lirc_gpio.c:
finished Kworld support with original config file
2003-04-19 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c, acconfig.h, configure.in, NEWS, setup.sh:
added support for Igor Ceska's receiver variation
* daemons/hw_bte.c, daemons/hw_bte.h, remotes/ericsson/lircd.conf.bte, configure.in, daemons/hw-types.c, setup.sh, TODO, NEWS:
added support for Ericsson mobile phone via Bluetooth (Vadim Shliakhov)
* tools/lirc_client.c: fixed bug related with button sequences,
if $HOME is not set use / as default
2003-03-31 lirc <lirc@k7>
* remotes/kworld/lircd.conf.kworld, configure.in:
finished Kworld support with original config file
2003-03-30 lirc <lirc@k7>
* tools/mode2.c, tools/smode2.c, tools/xmode2.c:
better guidance for dummies
* daemons/lircd.c: fixed bad pidfile command line parsing
2003-03-07 lirc <lirc@k7>
* daemons/Makefile.am: Mac OS X uses fifo instead of socket
2003-02-16 lirc <lirc@k7>
* daemons/hw_mp3anywhere.c, daemons/hw_mp3anywhere.h, daemons/hw-types.c, daemons/Makefile.am, remotes/x10/lircd.conf.mp3anywhere, configure.in, NEWS, setup.sh:
added support for X10 MP3 Anywhere RF receiver (Shawn Nycz),
fixed Creative Infra Receiver setup bug
* daemons/hw_creative.c: pre not hardwired anymore
2003-02-15 lirc <lirc@k7>
* daemons/hw_livedrive.c, daemons/hw-types.c, daemons/Makefile.am, remotes/creative/lircd.conf.livedrive, configure.in, NEWS, setup.sh:
added support for Creative LiveDrive (Stephen Beahm)
* daemons/hw_default.c:
transmit did not work correctly for raw config files that had the CONST_LENGTH flag turned on
* doc/man-source/lircd.inc, daemons/transmit.c, daemons/lircd.h, daemons/lircd.c, daemons/config_file.c, TODO:
use strtoull() instead of strtouq(),
fixed compiler warnings when using --with-syslog,
removed some duplicated code in start_server(),
new command line options that allow multiple instances of lircd (patch from Kir Kostuchenko):
--output
--logfile
--pidfile
2003-02-13 lirc <lirc@k7>
* tools/irxevent.c:
replaced nice but broken code by ugly but working code
2003-01-26 lirc <lirc@k7>
* configure.in, daemons/hw_audio.c, daemons/Makefile.am:
more soundcard driver changes
* NEWS, Makefile.am:
removed dist-bz2 target in favour of automake 1.5 built-in dist-bzip2 target
* tools/irpty.c, autogen.sh, configure.in, daemons/hw-types.c, daemons/lircd.c, drivers/lirc.h, NEWS, setup.sh:
added support for IR receiver connected to soundcard input,
most parts now compile on Mac OS X/Darwin (Matthias Ringwald)
2003-01-19 ranty <ranty@k7>
* drivers/lirc_dev/lirc_dev.h: Documented new fields.
2003-01-04 lirc <lirc@k7>
* ANNOUNCE, daemons/irrecord.c, daemons/ir_remote.c, TODO:
new function in irrecord to invert codes,
some typos fixed
2002-12-28 lirc <lirc@k7>
* tools/smode2.c: removed dummy printfs
2002-12-16 lirc <lirc@k7>
* drivers/lirc_i2c/lirc_i2c.c: fix to support more RC-5 remotes
2002-12-15 ranty <ranty@k7>
* drivers/lirc_dev/lirc_dev.c, drivers/lirc_dev/lirc_dev.h, drivers/lirc_serial/lirc_serial.c:
- lirc_dev:
- Introduces 'struct lirc_buffer' and functions to handle it.
- Moves the lock and wait queue to 'struct lirc_buffer'.
- Locking happens implicitly on lirc_buffer_[read!write]_1.
- The caller is responsible of locking on
_lirc_buffer_[read!write]_1
- Plugins can provide an 'struct lirc_buffer' for reading.
- Remove 'struct irctl'->bytes_in_key in favor of 'struct
lirc_buffer'->chunk_size.
- Extends lirc_dev's irctl_read and irctl_poll to acomodate lirc_serial.
- lirc_serial:
- Integrates lirc_serial with the above, removing lirc_poll and
lirc_read.
2002-12-02 lirc <lirc@k7>
* drivers/lirc_gpio/lirc_gpio.c: added support for AVerTV GO/wFM card
* daemons/irrecord.c: added explicit test command line switch,
this has confused too many people
2002-11-21 lirc <lirc@k7>
* daemons/transmit.c, NEWS:
fixed show-stopper bug in RC-6 transmit code
* doc/html-source/technical.html: added hint to hdparm
2002-11-19 ranty <ranty@k7>
* drivers/lirc_sir/lirc_sir.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_i2c/lirc_i2c.c, drivers/lirc_it87/lirc_it87.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_dev/lirc_dev.c, drivers/lirc_dev/lirc_dev.h, drivers/lirc_gpio/lirc_gpio.c, drivers/lirc_bt829/lirc_bt829.c:
- Make set_use_inc return an int to allow the plugins to reject an open.
- Move features into 'struct lirc_plugin' to allow the plugins to specify it's
features.
- Add an 'ioctl' function pointer to 'struct lirc_plugin' so plugins have a
chance to handle ioctl's before the general cases are handled.
- Extend the lirc_dev's ioctl handling to be more generic so it meets
lirc_serial's needs.
- Make lirc_serial take advantage of lirc_dev's new capabilities.
- Make all other drivers fit with lirc_dev's changes.
2002-11-12 lirc <lirc@k7>
* daemons/config_file.h, daemons/ir_remote.h, daemons/receive.c, daemons/transmit.c:
added support for strange Grundig protocol
2002-11-11 lirc <lirc@k7>
* setup.sh: yet another TV card
* drivers/lirc_gpio/lirc_gpio.c, configure.in, NEWS:
yet another TV card,
config files still missing
2002-11-09 lirc <lirc@k7>
* configure.in, doc/html-source/install.html, drivers/lirc_gpio/lirc_gpio.c, remotes/leadtek/lircd.conf.leadtek, remotes/leadtek/lircd.conf.RM-0007, remotes/leadtek/lircd.conf.RM-0010, remotes/leadtek/lircmd.conf.leadtek, remotes/leadtek/lircmd.conf.RM-0007, remotes/leadtek/lircmd.conf.RM-0010, setup.sh:
better WinView 601 support
* remotes/life-view/lircd.conf.flyvideo:
some more buttons for LR50Q model
* doc/html-source/configure.html: mentioned BUTTON*.* in lircmd.conf
* drivers/lirc_dev/lirc_dev.c:
won't check for signals as signals are all blocked anyway,
bugfix: lirc_thread has to be waken up during shutdown
2002-11-07 lirc <lirc@k7>
* daemons/receive.c:
increased heuristic to better support Leadtek cards
2002-11-03 lirc <lirc@k7>
* remotes/leadtek/lircd.conf.leadtek, remotes/leadtek/lircmd.conf.leadtek, remotes/winfast/lircd.conf.tv2000, remotes/winfast/lircmd.conf.tv2000, doc/html-source/install.html, drivers/lirc_gpio/lirc_gpio.c, configure.in, NEWS, setup.sh:
added support for Leadtek WinView 601 TV card
2002-10-30 lirc <lirc@k7>
* drivers/lirc_gpio/lirc_gpio.c, remotes/winfast/lircd.conf.tv2000, setup.sh:
added support for WinFast TV 2000 XP (Markus Lischka)
2002-10-27 ranty <ranty@k7>
* drivers/lirc_serial/lirc_serial.c:
- Renamed calc_pulse_lengths_in_clocks into init_timing_params and wrote one
for the !USE_RDTSC case.
- Inlined 'void on(void)' and 'void off(void)', better performance, and timing
will not depend on CPU that much.
- Broke up send_pulse_homebrew, it now calls send_pulse_homebrew_softcarrier.
And the implementation of send_pulse_homebrew_softcarrier depends on
USE_RDTSC.
* drivers/lirc_serial/lirc_serial.c:
Restore proper check_region behaviour.
* drivers/lirc_dev/Makefile.am, drivers/lirc_it87/Makefile.am, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am, drivers/lirc_sir/Makefile.am, drivers/lirc_bt829/Makefile.am:
Make sure that depmod is run after installing the modules, and not before.
2002-10-26 lirc <lirc@k7>
* remotes/generic/RC-6.conf:
added template config file for RC-6 protocol
2002-10-25 lirc <lirc@k7>
* configure.in, drivers/lirc_gpio/lirc_gpio.c, NEWS, remotes/avermedia/lircd.conf.vdomate, setup.sh:
added support for AverMedia VDOMATE
2002-10-21 ranty <ranty@k7>
* tools/irsend.c, tools/rc.c, doc/man/Makefile.am, doc/man-source/irsend.inc, doc/man-source/rc.inc, tools/.cvsignore, tools/Makefile.am, doc/html-source/index.html, doc/html-source/install.html, doc/html-source/programs.html, doc/html-source/technical.html, doc/man/.cvsignore, doc/release-html.sh, doc/release-man.sh:
Renamed 'rc' to 'irsend' and updated everything I could think of to reflect
the change.
* drivers/lirc_bt829/Makefile.am, drivers/lirc_dev/Makefile.am, drivers/lirc_it87/Makefile.am, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am, drivers/lirc_sir/Makefile.am, drivers/Makefile.am, configure.in, daemons/Makefile.am, doc/html-source/index.html, doc/html-source/technical.html, TODO:
Renamed --disable-manage-devices into --enable-sandboxed enhanced it and added
a documentation note for packagers.
* configure.in:
sed segfaults when $hw_module is too long :(, changed the implementation to
use "sort -u".
2002-10-15 ranty <ranty@k7>
* drivers/lirc_dev/lirc_dev.c, drivers/lirc_dev/lirc_dev.h, drivers/lirc_gpio/lirc_gpio.c, remotes/pixelview/lircrc.playtv_pro, AUTHORS, doc/html-source/technical.html:
New email for Artur Lipowski.
2002-10-12 ranty <ranty@k7>
* drivers/lirc_it87/lirc_it87.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c, drivers/kcompat.h, drivers/lirc_dev/lirc_dev.c, drivers/lirc_dev/lirc_dev.h, drivers/lirc_gpio/lirc_gpio.c, drivers/lirc_i2c/lirc_i2c.c, drivers/Makefile.am:
- Removes support for 2.0 kernels;
- Removes support for 2.2.17 and older kernels, 2.2.18 and above have some
usefull 2.4 compatibility built in already;
- Started a kcompat.h header file, to hold backwards compatibility code.
* drivers/lirc_bt829/lirc_bt829.c: Cosmetic.
2002-10-12 lirc <lirc@k7>
* daemons/hw_udp.c: support for pre ISO C99 systems
2002-10-10 ranty <ranty@k7>
* configure.in: lirc_aver was gone long ago.
2002-10-09 ranty <ranty@k7>
* drivers/lirc_bt829/lirc_bt829.c:
Include parameter list in function prototypes to comply with ANSI C.
* daemons/Makefile.am:
Make sure that hw_caraca.c, hw_caraca.h and hw_udp.c get included in release
tarballs.
2002-10-08 ranty <ranty@k7>
* drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c, drivers/lirc_it87/lirc_it87.c, drivers/lirc_parallel/lirc_parallel.c, configure.in, drivers/lirc_dev/lirc_dev.c, drivers/lirc_dev/lirc_dev.h:
Make all kernel modules into lirc_plugin's.
2002-10-06 lirc <lirc@k7>
* configure.in, drivers/lirc_i2c/lirc_i2c.c, NEWS, remotes/asus/lircd.conf.asus, setup.sh:
added support for Asus TV-Box (patch by Stefan Jahn)
* remotes/life-view/lircd.conf.fly98, remotes/life-view/lircd.conf.flyvideo, remotes/life-view/lircd.conf.FlyVideo_II, remotes/life-view/lircmd.conf.fly98, remotes/life-view/lircmd.conf.flyvideo, remotes/life-view/lircrc.fly98, remotes/life-view/lircrc.flyvideo, doc/html-source/index.html, doc/html-source/install.html, drivers/lirc_gpio/lirc_gpio.c, configure.in, NEWS, setup.sh, ANNOUNCE:
added support for another FlyVideo type card,
major FlyVideo config cleanup
* doc/html-source/index.html, ANNOUNCE, configure.in, NEWS, setup.sh:
lirc-0.6.6 release
2002-10-02 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c: cosmetic change
2002-09-26 lirc <lirc@k7>
* drivers/lirc_i2c/lirc_i2c.c: malloc.h is obsolete
2002-09-21 lirc <lirc@k7>
* doc/html-source/index.html, doc/html-source/programs.html, doc/man/Makefile.am:
forgot links to rc page
* ANNOUNCE, configure.in, daemons/lircd.c, daemons/receive.c, doc/html-source/help.html, doc/html-source/index.html, doc/html-source/technical.html, NEWS, setup.sh:
pre2
2002-09-12 lirc <lirc@k7>
* doc/man-source/xmode2.inc, tools/.cvsignore, tools/ircat.c, tools/irexec.c, tools/Makefile.am, tools/mode2.c, tools/rc.c, tools/smode2.c, tools/xmode2.c, doc/html-source/configure.html, doc/html-source/foot.html, doc/html-source/help.html, doc/html-source/index.html, doc/html-source/install.html, doc/html-source/programs.html, doc/man/.cvsignore, doc/man-source/help2man.inc, doc/man-source/irexec.inc, doc/man-source/irxevent.inc, doc/man-source/lircd.inc, doc/man-source/rc.inc, doc/release-html.sh, doc/release-man.sh, NEWS:
moved rc tool from xrc package to LIRC package
2002-09-02 ranty <ranty@k7>
* TODO: more things to do.
2002-08-31 ranty <ranty@k7>
* daemons/lircd.c: enable should be initialized.
2002-08-30 lirc <lirc@k7>
* drivers/lirc_gpio/lirc_gpio.c, remotes/winfast/lircd.conf.tv2000:
bugfix for Winfast TV 2000 cards (untested)
* daemons/lircd.c:
former version did not notice when server went down after successful connect in client mode
2002-08-25 ranty <ranty@k7>
* configure.in:
Do proper quoting on the vgalib detection for autoconf 2.5x compatibility.
2002-08-17 lirc <lirc@k7>
* daemons/lircd.c, daemons/lircmd.c, doc/html-source/foot.html, doc/html-source/head.html, doc/html-source/index.html, doc/html-source/programs.html, doc/man/Makefile.am, doc/man-source/ircat.inc, doc/release-html.sh, doc/release-man.sh, remotes/generic/NEC-AIWA.conf, remotes/generic/SANYO.conf, TODO, tools/ircat.c, tools/irexec.c, tools/irpty.c, tools/irw.c, tools/Makefile.am:
added ircat tool (patch by Bjorn Bringert),
minor fixes
2002-07-28 lirc <lirc@k7>
* daemons/ir_remote.h, daemons/lircd.c, daemons/lircd.h, doc/html-source/technical.html:
SEND_ONCE accepts optional repeat count (done by Scott Baily)
2002-07-27 lirc <lirc@k7>
* configure.in, doc/html-source/configure.html, drivers/lirc_sir/lirc_sir.c, setup.sh, acconfig.h, NEWS:
added SIR support for Actisys Act200L dongle (Karl Bongers)
* tools/xmode2.c, tools/mode2.c, tools/smode2.c:
add check for PIPE on fh,
don't do ioctl if pipe
2002-07-13 ranty <ranty@k7>
* acconfig.h, configure.in, daemons/hardware.h, daemons/hw-types.c, daemons/irrecord.c, daemons/lircd.c:
Add patch to have a 'null' driver by Andy Mortimer and massage things to
remove the LIRC_NETWORK_ONLY special case.
2002-07-07 lirc <lirc@k7>
* ANNOUNCE, configure.in, doc/html-source/index.html, NEWS, setup.sh:
cosmetic fix for recursive call of configure script
2002-07-04 lirc <lirc@k7>
* daemons/irrecord.c: learn toggle_mask, untested
2002-07-01 lirc <lirc@k7>
* drivers/lirc.h:
int32_t would create incompatibilities on 64 bit architectures
* tools/.cvsignore, daemons/config_file.c:
begin and end now accepted as button names
2002-06-28 lirc <lirc@k7>
* daemons/receive.c, drivers/lirc.h:
should compile again with current 2.4.x kernels
2002-06-24 lirc <lirc@k7>
* configure.in, daemons/hw-types.c, daemons/hw_udp.c, NEWS, setup.sh:
added UDP network driver
* daemons/config_file.c, daemons/irrecord.c, daemons/serial.c, setup.sh, tools/irxevent.c:
minor cleanups
2002-06-16 lirc <lirc@k7>
* daemons/lircd.c:
set O_NONBLOCK flag to client file descriptors to avoid blocking of lircd when client becomes unreachable
2002-06-16 ranty <ranty@k7>
* doc/man-source/irxevent.inc, tools/irxevent.c:
Allow sending events to an specific 'WindowID'.
* doc/man-source/irxevent.inc, tools/irxevent.c:
Allow targeting the 'RootWindow' which makes sending events to the
windowmanager posible/easier.
2002-05-20 lirc <lirc@k7>
* doc/html-source/configure.html, setup.sh: additional config file docu
2002-05-18 lirc <lirc@k7>
* acconfig.h, configure.in, drivers/lirc_sir/lirc_sir.c, setup.sh:
restructured setup script
2002-05-12 lirc <lirc@k7>
* doc/html-source/install.html:
clearer explanation of serial port problem
2002-05-05 lirc <lirc@k7>
* doc/html-source/install.html: doc update
* daemons/receive.c: fixed stall bug
2002-05-04 lirc <lirc@k7>
* daemons/hardware.h, daemons/hw_default.c, daemons/hw_default.h, daemons/hw_dsp.c, daemons/hw_slinke.c, daemons/hw_slinke.h, daemons/irrecord.c, daemons/lircd.c, daemons/lircd.h, daemons/receive.c:
changes to integrate hw_dsp,
irrecord bugfix
2002-04-28 lirc <lirc@k7>
* daemons/config_file.h, daemons/ir_remote.h, daemons/receive.c:
changes to decode unknown protocol found on a Goldstar TV remote
2002-04-22 lirc <lirc@k7>
* daemons/transmit.c, tools/Makefile.am, daemons/hw_dsp.c, daemons/hw-types.c, daemons/Makefile.am, setup.sh, configure.in, NEWS:
added support for hardware connected to soundcard input (Pavel Machek)
2002-04-18 ranty <ranty@k7>
* doc/man-source/irpty.inc:
The previous fix would add an extra space, this time it won't.
2002-04-11 ranty <ranty@k7>
* doc/man-source/irpty.inc:
A formating error was causing a piece of text not to be shown.
2002-04-01 lirc <lirc@k7>
* doc/html-source/index.html, doc/html-source/install.html, drivers/lirc_gpio/lirc_gpio.c, remotes/pixelview/lircd.conf.playtv_pro:
changed config file for Pixelview PlayTV pro and compatible TV cards to use original codes
2002-03-28 lirc <lirc@k7>
* configure.in, drivers/lirc_bt829/.cvsignore, drivers/lirc_bt829/lirc_bt829.c, drivers/lirc_bt829/Makefile.am, drivers/Makefile.am, NEWS, remotes/tekram/lircd.conf.m230, remotes/tekram/lircmd.conf.m230, setup.sh:
added support for Tekram M230 Mach64 (Froenchenko Leonid)
2002-03-27 lirc <lirc@k7>
* drivers/lirc_sir/lirc_sir.c: changes for Sharp Zaurus hardware,
disable interrupts during transmit
2002-03-25 lirc <lirc@k7>
* contrib/sendxevent.c: command line version of irxevent
2002-03-24 lirc <lirc@k7>
* daemons/lircd.c: fixed bug in command line driver selection
2002-03-06 lirc <lirc@k7>
* drivers/lirc_parallel/lirc_parallel.c:
fixed minor bug in timer initialization
2002-02-23 lirc <lirc@k7>
* doc/html-source/technical.html: described interrupt issue
* doc/man2html.c, doc/man-source/irxevent.inc:
removed links to man pages from generated html pages
2002-02-22 lirc <lirc@k7>
* daemons/dump_config.c, daemons/ir_remote.c, daemons/ir_remote.h, daemons/lircd.c, daemons/transmit.c, daemons/config_file.c:
added support for error detection scheme found on Sharp RRMCG0041SJSA remote
2002-02-06 lirc <lirc@k7>
* daemons/receive.c: code cleanup
2002-02-01 lirc <lirc@k7>
* configure.in, daemons/irrecord.c, doc/man-source/irrecord.inc, TODO:
no new protocols seem to show up
2002-02-01 ranty <ranty@k7>
* drivers/lirc_dev/Makefile.am, drivers/lirc_it87/Makefile.am, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am, drivers/lirc_sir/Makefile.am, drivers/Makefile.am:
Didn't notice that mkdev and rmdev where used in multiple Makefile.am files.
This should fix 'configure --disable-manage-devices'
2002-01-31 lirc <lirc@k7>
* setup.sh: really disable X11
2002-01-26 lirc <lirc@k7>
* ANNOUNCE, configure.in, doc/html-source/index.html, NEWS, setup.sh:
0.6.5 release
* doc/html-source/help.html: cosmetic fix
2002-01-22 lirc <lirc@k7>
* INSTALL, README: added pointers to main documentation
2002-01-18 lirc <lirc@k7>
* doc/.cvsignore: added more files to ignore
* doc/man/.cvsignore: added .cvsignore
* doc/html-source/install.html: added note about serial.c kernel bug
* doc/man/Makefile.am: man pages have to go into distribution
* doc/.cvsignore, README: doc.html has been removed
2002-01-16 lirc <lirc@k7>
* setup.sh: users don't look in the 'Other serial port devices' section
2002-01-06 lirc <lirc@k7>
* configure.in, doc/Makefile.am, doc/man/Makefile.am, doc/release-man.sh:
fixed man page handling (did not install correctly)
* daemons/hw_default.c, daemons/irrecord.c: cosmetic fixes
* doc/html-source/install.html, drivers/lirc_it87/lirc_it87.c, drivers/lirc_it87/README, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c, setup.sh:
renamed I/O base address parameter to io
* doc/html-source/help.html: fixed typo
2001-12-17 lirc <lirc@k7>
* doc/html-source/configure.html, doc/html-source/doc.html, doc/html-source/foot.html, doc/html-source/head1.html, doc/html-source/head2.html, doc/html-source/head.html, doc/html-source/help.html, doc/html-source/index.html, doc/html-source/install.html, doc/html-source/programs.html, doc/html-source/technical.html, doc/lirc.css, doc/Makefile.am, doc/release-html.sh:
cleaned up html documentation, now uses CSS
2001-12-16 ranty <ranty@k7>
* doc/html-source/programs.html:
Forgot to remove "html/" from the links.
* doc/html-source/configure.html: Revised lircmd/XF4 configuration.
More IntelliMouse vs. IMPS/2 updates.
* doc/html-source/install.html, doc/html-source/programs.html:
Some documentation is generated from man pages.
* doc/html-source/configure.html, doc/html-source/foot.html, doc/html-source/head1.html, doc/html-source/head2.html, doc/html-source/help.html, doc/html-source/install.html, doc/html-source/technical.html:
Fixed html comments which prevented some text from showing up in a browser.
2001-12-15 ranty <ranty@k7>
* remotes/life-view/lircmd.conf.fly98, remotes/pixelview/lircmd.conf.playtv_pro, remotes/pixelview/lircmd.conf.remotemaster, remotes/silitek/lircmd.conf.silitek, remotes/winfast/lircmd.conf.tv2000, contrib/lircmd.conf, daemons/lircmd.c, doc/html-source/configure.html, doc/html-source/technical.html, doc/man-source/lircmd.inc, NEWS, remotes/avermedia/lircmd.conf.avermedia, remotes/avermedia/lircmd.conf.avermedia98, remotes/bestbuy/lircmd.conf.bestbuy, remotes/bestbuy/lircmd.conf.bestbuy2, remotes/hauppauge/lircmd.conf.hauppauge:
Implemented IntelliMouse protocol in lircmd which is more appropriate for the
pipe we use there.
2001-12-12 lirc <lirc@k7>
* AUTHORS, configure.in, drivers/lirc_it87/.cvsignore, drivers/lirc_it87/lirc_it87.c, drivers/lirc_it87/lirc_it87.h, drivers/lirc_it87/Makefile.am, drivers/lirc_it87/README, drivers/lirc_it87/TODO, drivers/Makefile.am, NEWS, setup.sh:
added support for ITE IT8712/IT8705 CIR port (Hans-Gnter Ltke Uphues)
2001-12-12 ranty <ranty@k7>
* drivers/lirc_dev/lirc_dev.c, drivers/lirc_gpio/lirc_gpio.c, drivers/lirc_i2c/lirc_i2c.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c:
Added the GPL license paragraph to source files, MODULE_LICENSE
declarations and a couple of MODULE_AUTHOR and MODULE_DESCRIPTION
declarations.
* daemons/hw-types.c:
Include 'irman' in the list of available drivers if available.
* configure.in:
'irman' support wasn't building properly when driver 'any' was selected.
2001-12-08 lirc <lirc@k7>
* daemons/hardware.h, daemons/hw_caraca.c, daemons/hw_creative.c, daemons/hw_default.c, daemons/hw_default.h, daemons/hw_irman.c, daemons/hw_logitech.c, daemons/hw_pinsys.c, daemons/hw_pixelview.c, daemons/hw_silitek.c, daemons/hw_slinke.c, daemons/ir_remote.c, daemons/ir_remote.h, daemons/lircd.c, drivers/lirc.h:
implemented functions to set receiver frequency range
* drivers/lirc_sir/lirc_sir.c: implemented sane read function
2001-12-02 lirc <lirc@k7>
* configure.in: check for svgalib include files added
* drivers/lirc_sir/lirc_sir.c: del_timer_sync() not available in 2.2.x
* doc/html-source/configure.html: docs are far from being complete...
* drivers/lirc_sir/lirc_sir.c:
fixed potential kernel crash due to timer still being active at module removal
* daemons/hw_logitech.c: increased timeout, warning in debug mode only
2001-11-27 ranty <ranty@k7>
* daemons/irrecord.c, daemons/dump_config.c:
Christoph prefers #ifdef rather than #if with autoconf preprocesor macros.
2001-11-24 ranty <ranty@k7>
* daemons/lircd.c, daemons/lircd.h, daemons/lircmd.c:
ANSI-C forbids text after #endif, only comments are accepted there.
2001-11-22 ranty <ranty@k7>
* daemons/dump_config.c, daemons/irrecord.c, doc/man2html.c, tools/smode2.c:
Removed some compiler warnnings.
2001-11-20 ranty <ranty@k7>
* drivers/lirc_dev/Makefile.am, drivers/lirc_gpio/Makefile.am, drivers/lirc_i2c/Makefile.am, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am, drivers/lirc_sir/Makefile.am:
automake 1.5 seams to change some variables which broke module compilation.
* configure.in:
prevent "AC_PROG_CPP was called before AC_PROG_CC" autoconf error.
* doc/man-source/irrecord.inc, doc/man-source/irw.inc, doc/man-source/irxevent.inc, doc/man-source/lircd.inc, doc/man-source/lircmd.inc, doc/man-source/mode2-common.inc, doc/man-source/mode2.inc, doc/man-source/smode2.inc, doc/man-source/xmode2.inc, tools/irw.c, tools/irxevent.c, tools/mode2.c, tools/smode2.c, tools/xmode2.c, doc/html-source/doc.html, doc/Makefile.am, doc/man2html.c, doc/man-source/daemons.inc, doc/man-source/help2man.inc, doc/man-source/irexec.inc, doc/man-source/irpty.inc, doc/release-html.sh, doc/release-man.sh, Makefile.am:
Generate manpages with help2man and html program manuals from the manpages.
2001-11-18 lirc <lirc@k7>
* remotes/pinnacle_systems/lircd.conf.pctv: some more buttons
* daemons/receive.c: didn't compile
* daemons/hw_pinsys.c: warning only should appear in debug mode,
otherwise the log file could fill up quite fast
2001-11-14 lirc <lirc@k7>
* drivers/lirc_gpio/lirc_gpio.c, NEWS, setup.sh:
added support for Prolink PV-BT878P+9B card (Arkadiusz Miskiewicz)
* daemons/receive.c:
introduced better heuristic that should fix problems with repeat and most TV cards
2001-11-14 ranty <ranty@k7>
* acconfig.h, tools/irpty.c: Polishing the use of forkpty in irpty.
2001-11-09 lirc <lirc@k7>
* daemons/irrecord.c, doc/html-source/configure.html, doc/html-source/install.html, doc/html-source/programs.html:
location of config files was wrong
2001-11-04 ranty <ranty@k7>
* configure.in:
The check for gl_setcontextvga in libvgagl was not using -lvga so it failed
even if libvga and libvgagl where there.
* configure.in, tools/irpty.c, tools/Makefile.am:
Use libc6's forkpty if available: enables devpts and probably devfs support.
* configure.in, daemons/Makefile.am:
made device node creation a configure option, to make easier installation by
non root users. This makes Debian packing easier and maybe others.
* configure.in:
Tagged driver/configuration selection heuristic for easier extraction on
Debian packing process and maybe others.
2001-11-03 lirc <lirc@k7>
* daemons/config_file.c, doc/html-source/install.html, drivers/lirc_serial/lirc_serial.c:
accept CR-LF in config file
2001-10-21 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c:
removed nearly all compile time configuration from module,
the used hardware can now be chosen with a variable
2001-10-18 lirc <lirc@k7>
* daemons/lircd.c, daemons/serial.c, TODO: recognize stale lockfiles
* doc/html-source/doc.html, doc/html-source/foot.html, doc/html-source/technical.html:
added known bugs section
2001-10-14 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c, setup.sh:
fixed potential problem with udelay() on fast machines
2001-09-30 lirc <lirc@k7>
* configure.in, NEWS, setup.sh, TODO:
added support for Hauppauge DVB-s card
2001-09-28 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c:
an unresolved symbol appeared in a special configuration, fixed
2001-09-18 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c:
loops_per_jiffy is also used since 2.2.18
2001-09-17 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c:
IRdeo Remote does support receiving
* setup.sh: fixed typo in TV card selection
2001-09-14 lirc <lirc@k7>
* acconfig.h, configure.in, drivers/lirc_serial/lirc_serial.c, setup.sh:
added support for IRdeo Remote
2001-09-07 lirc <lirc@k7>
* daemons/dump_config.c, remotes/generic/MOTOROLA.conf:
added template config file for Motorola protocol
2001-08-26 lirc <lirc@k7>
* configure.in, doc/html-source/install.html, drivers/lirc_gpio/lirc_gpio.c, NEWS:
AVerMedia TV cards with ID 0x00011461 and 0x00041461 should finally work with the provided config files
2001-08-25 lirc <lirc@k7>
* daemons/hw_default.c, daemons/ir_remote.h, daemons/lircd.c, daemons/transmit.c, daemons/transmit.h:
fixed two bugs in transmit code that affected distance between repeated signals
2001-08-16 lirc <lirc@k7>
* daemons/lircd.c: moved error logging to correct place
2001-08-15 lirc <lirc@k7>
* ANNOUNCE, configure.in, doc/html-source/doc.html, NEWS, setup.sh:
0.6.4 release
2001-08-10 lirc <lirc@k7>
* daemons/irrecord.c:
fixed segfault occuring for remotes with very short signals
2001-08-08 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c: fixed compile error in debug code
2001-08-04 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c: rdtsc in 2.2.x
* doc/html-source/install.html, drivers/lirc_serial/lirc_serial.c, NEWS:
use rdtsc if available (Steve Davies)
* remotes/generic/SONY12.conf: measured duty_cycle using oscilloscope
2001-07-28 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c:
changes to improve transmissoin quality (Steve Davies)
2001-07-24 lirc <lirc@k7>
* drivers/lirc_sir/lirc_sir.c: made ISR more fail safe, some clean-ups
2001-07-18 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c:
small gaps between bytes were generated...
2001-07-16 lirc <lirc@k7>
* daemons/hw-types.c, daemons/irrecord.c, daemons/lircd.c:
fixed network only compile error
2001-07-12 lirc <lirc@k7>
* daemons/serial.c: cosmetic fix
2001-07-11 lirc <lirc@k7>
* doc/html-source/install.html, drivers/lirc_serial/lirc_serial.c, NEWS:
fixed bug in Irdeo transmit code
2001-07-06 ranty <ranty@k7>
* setup.sh: It now should be POSIX Bourne shell compatible.
2001-07-06 lirc <lirc@k7>
* daemons/irrecord.c: produce nicer pre/post data values
2001-07-05 lirc <lirc@k7>
* daemons/irrecord.c, daemons/Makefile.am:
handle multiple remotes in pre/post remove functions
2001-07-04 uid26674 <uid26674@k7>
* daemons/lircd.c: address was reused on wrong socket...
2001-06-24 lirc <lirc@k7>
* configure.in, drivers/lirc_gpio/lirc_gpio.c, NEWS, remotes/life-view/lircd.conf.FlyVideo_II, setup.sh:
added support for FlyVideo II TV card
2001-06-23 lirc <lirc@k7>
* drivers/lirc_serial/lirc_serial.c: Animax receiver won't transmit...
* drivers/lirc_parallel/lirc_parallel.c: changes for 2.4.x kernels
* daemons/hw-types.c, daemons/Makefile.am, setup.sh:
hw-types.[c|h] was not included in the distribution
2001-06-15 lirc <lirc@k7>
* NEWS: updated NEWS file
* drivers/lirc_sir/lirc_sir.c: Power on IR module
2001-06-14 lirc <lirc@k7>
* drivers/lirc_gpio/lirc_gpio.c, remotes/cph03x/lircd.conf.cph03x, setup.sh, TODO:
added support for FlyVideo 98/FM TV card
* contrib/conf.modules.aver: lirc_aver no longer exists
2001-06-11 ranty <ranty@k7>
* doc/html-source/install.html, doc/html-source/programs.html:
documentation update: muti-driver lircd and long options for irpty.
* tools/irpty.c: added long options including --help and --version.
* acconfig.h, configure.in, daemons/hardware.h, daemons/hw_caraca.c, daemons/hw_creative.c, daemons/hw_default.c, daemons/hw_irman.c, daemons/hw_logitech.c, daemons/hw_pinsys.c, daemons/hw_pixelview.c, daemons/hw_silitek.c, daemons/hw_slinke.c, daemons/hw-types.c, daemons/hw-types.h, daemons/irrecord.c, daemons/lircd.c, daemons/Makefile.am, daemons/receive.c:
Multiple drivers may be linked into lircd and selected at runtime.
2001-06-04 lirc <lirc@k7>
* daemons/dump_config.c: changed description
2001-05-24 lirc <lirc@k7>
* daemons/hw_pinsys.c, daemons/hw_pinsys.h: changed timeout value
2001-05-20 lirc <lirc@k7>
* AUTHORS, configure.in, drivers/lirc_gpio/lirc_gpio.c, NEWS, remotes/winfast/lircd.conf.tv2000, remotes/winfast/lircmd.conf.tv2000, setup.sh:
added support for Winfast TV2000,
thanks to Juan Toledo for the patch
2001-05-06 lirc <lirc@k7>
* configure.in, doc/html-source/install.html:
changed default location of some files
* contrib/lirc.suse7.1: added S.u.S.E. 7.1 init script
2001-04-26 lirc <lirc@k7>
* daemons/Makefile.am, drivers/lirc_dev/Makefile.am, drivers/lirc_gpio/Makefile.am, drivers/lirc_i2c/Makefile.am, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am, drivers/lirc_sir/Makefile.am, drivers/Makefile.am:
modified Makefiles to support DESTDIR, etc.
2001-04-25 lirc <lirc@k7>
* configure.in, daemons/lircd.c, drivers/lirc_gpio/lirc_gpio.c, remotes/bestbuy/lircd.conf.bestbuy, remotes/bestbuy/lircd.conf.bestbuy2, remotes/bestbuy/lircmd.conf.bestbuy2, setup.sh:
added support for BT878 version of BestBuy Easy TV card (Miguel Angel)
* configure.in: added iPAQ to configure script
* daemons/lircd.c: reuse address
* acconfig.h, drivers/lirc_sir/lirc_sir.c, setup.sh:
initial iPAQ support (NOT working)
2001-04-24 lirc <lirc@k7>
* configure.in, drivers/lirc_i2c/lirc_i2c.c, remotes/knc_one/lircd.conf.knc_one, setup.sh:
added support for KNC ONE TV cards (Ulrich Mueller)
* remotes/pinnacle_systems/lircd.conf.pctv:
added extra buttons for new version of the remote
* doc/html-source/install.html: added mode3 warning
* doc/html-source/configure.html: added X 4.0 configuration detail
* daemons/ir_remote.c: fixed repeat bug
* daemons/hw_silitek.c, daemons/hw_silitek.h, remotes/silitek/lircd.conf.silitek, remotes/silitek/lircmd.conf.silitek:
added support for Silitek SM-1000 receiver,
many thanks to Krister Wicksell Eriksson
* tools/irxevent.c: fixed bug (Scott A. Herod)
* daemons/hw_pixelview.c: timeout was too short (Michael Beattie)
* daemons/ir_remote.h, tools/irw.c: fixed some compile warnings
* drivers/lirc_sir/lirc_sir.c:
show buffer overrun error only in DEBUG mode
* drivers/lirc_serial/lirc_serial.c:
show buffer overrun error only in DEBUG mode,
added clock debug code,
changes to transmit code
* daemons/hw_logitech.c, daemons/hw_slinke.c, daemons/Makefile.am, remotes/packard_bell/lircd.conf.packard_bell:
added support for Silitek SM-1000 receiver,
many thanks to Krister Wicksell Eriksson
* drivers/lirc_i2c/lirc_i2c.c:
fixed autodetection issues with PixelView cards (Gerd),
probe 0x1a first
* setup.sh: added TCP/IP network support (Bryan Clingman),
added support for Silitek SM-1000 receiver,
many thanks to Krister Wicksell Eriksson
* configure.in: added TCP/IP network support (Bryan Clingman),
fixed autodetection issues with PixelView cards (Gerd),
added support for Silitek SM-1000 receiver,
many thanks to Krister Wicksell Eriksson
* acconfig.h: added TCP/IP network support (Bryan Clingman),
fixed autodetection issues with PixelView cards (Gerd)
* NEWS: changed behaviour of repeat setting,
added TCP/IP network support (Bryan Clingman),
added support for Silitek SM-1000 receiver,
many thanks to Krister Wicksell Eriksson,
0.6.3 release
* daemons/irrecord.c, daemons/lircd.c, daemons/lircd.h, doc/html-source/doc.html, doc/html-source/programs.html, doc/html-source/technical.html:
added TCP/IP network support (Bryan Clingman)
* tools/lirc_client.c: changed behaviour of repeat setting
2001-02-04 Christoph Bartelmus <columbus@k7>
* remotes/sigma_designs/lircd.conf.realmagic: changes for version 1.5
* remotes/technisat/lircd.conf.mediafocusI:
cosmetic change to reduce confusion
2001-01-30 Christoph Bartelmus <columbus@k7>
* daemons/ir_remote.h: fixed bug in map_code
2001-01-27 Christoph Bartelmus <columbus@k7>
* Makefile.am: added dist-bz2 target
2001-01-21 Christoph Bartelmus <columbus@k7>
* acconfig.h, configure.in, drivers/lirc_i2c/lirc_i2c.c:
fixed possible kernel oops in lirc_i2c
* daemons/hw_caraca.c, daemons/hw_creative.c, daemons/hw_irman.c, daemons/hw_logitech.c, daemons/irrecord.c:
fixed(?) irrecord toggle_bit problem
* remotes/bestbuy/lircd.conf.bestbuy, remotes/bestbuy/lircmd.conf.bestbuy:
added BestBuy config files
* configure.in, drivers/lirc_gpio/lirc_gpio.c, NEWS, setup.sh:
added support for BestBuy EasyTV (Miguel A. Alvarez <maacruz@navegalia.com>)
2001-01-20 Christoph Bartelmus <columbus@k7>
* configure.in, daemons/dump_config.c, daemons/lircd.c, drivers/lirc_i2c/lirc_i2c.c, remotes/provideo/lircd.conf.pv951:
added config file for PV951
2001-01-18 Christoph Bartelmus <columbus@k7>
* configure.in, drivers/lirc_gpio/lirc_gpio.c, drivers/lirc_i2c/lirc_i2c.c, NEWS, setup.sh:
added support for ProVideo PV951 (Bogdan Gaspar)
* remotes/generic/DENON.conf: frequency update
* drivers/lirc_parallel/lirc_parallel.c: fixed 2.0.x compile problem
2001-01-13 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio.c: some AVerMedia card ID related changes
2001-01-11 Christoph Bartelmus <columbus@k7>
* ChangeLog, daemons/irrecord.c: not obvious enough
* ChangeLog, drivers/lirc_gpio/lirc_gpio.c, remotes/avermedia/lircd.conf.avermedia:
adjusted number of bits in driver
2001-01-10 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio.c:
changes to driver to work with the new AVerMedia config file
* doc/html-source/install.html, remotes/avermedia/lircd.conf.avermedia, remotes/avermedia/lircd.conf.avermedia98:
got the codes of the old AVerMedia remote from Santiago
2001-01-06 Christoph Bartelmus <columbus@k7>
* configure.in, daemons/hw_creative.c, daemons/hw_logitech.c, daemons/hw_pinsys.c, daemons/hw_pixelview.c, daemons/ir_remote.h, NEWS, remotes/creative/lircd.conf.creative, setup.sh:
fixed irrecord incompatibility with some receivers
2001-01-05 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio.c:
config file did not work for AVerMedia TVCapture98 1461:0004
* configure.in, daemons/hw_creative.c, daemons/hw_creative.h, daemons/irrecord.c, daemons/Makefile.am, doc/html-source/programs.html, setup.sh:
added support for Creative Infra receiver
* drivers/lirc_dev/Makefile.am, drivers/lirc_gpio/Makefile.am, drivers/lirc_i2c/Makefile.am, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am, drivers/lirc_sir/Makefile.am:
changed for 2.4.0 kernel Makefiles
2000-12-23 Christoph Bartelmus <columbus@k7>
* acinclude.m4, configure.in, drivers/lirc_dev/lirc_dev.c:
some devfs related changes
2000-12-15 Christoph Bartelmus <columbus@k7>
* acconfig.h, configure.in, doc/html-source/install.html, drivers/lirc_sir/lirc_sir.c, NEWS, setup.sh, TODO:
added support for Tekram Irmate 210,
cleaned up SIR driver (thanks to Frank Przybylski for bug fixes and suggestions)
2000-12-09 Christoph Bartelmus <columbus@k7>
* drivers/lirc_dev/lirc_dev.c: removed module_ prefix
2000-12-08 Christoph Bartelmus <columbus@k7>
* daemons/hw_irman.c, daemons/hw_logitech.c, daemons/hw_pinsys.c, daemons/hw_pixelview.c, daemons/hw_slinke.c, daemons/irrecord.c, daemons/lircd.c, doc/html-source/programs.html, drivers/Makefile.am, tools/mode2.c, tools/smode2.c, tools/xmode2.c, configure.in, contrib/lirc.debian, contrib/lirc.suse, daemons/hardware.h, daemons/hw_caraca.c, daemons/hw_default.c:
device name can be selected from command line
* configure.in, drivers/lirc_fly98/ChangeLog, drivers/lirc_fly98/.cvsignore, drivers/lirc_fly98/lirc_fly98.c, drivers/lirc_fly98/lirc_fly98.h, drivers/lirc_fly98/Makefile.am, drivers/lirc_fly98/patches/lirc_fly98-bttv-0.6.3.diff, drivers/lirc_fly98/patches/lirc_fly98-kernel-2.2.10.diff, drivers/lirc_fly98/patches/lirc_fly98-kernel-2.2.11.diff, drivers/lirc_fly98/patches/lirc_fly98-kernel-2.2.14.diff, drivers/lirc_fly98/patches/lirc_fly98-kernel-2.2.15.diff, drivers/lirc_fly98/README, drivers/lirc_gpio/.cvsignore, drivers/lirc_gpio/lirc_gpio.c, drivers/lirc_gpio/lirc_gpio_i.c, drivers/lirc_gpio/lirc_gpio_p.c, drivers/lirc_gpio/Makefile.am, drivers/lirc_i2c/lirc_i2c.c, drivers/Makefile.am, NEWS, README, remotes/technisat/lircd.conf.mediafocusI, setup.sh, doc/html-source/install.html, doc/html-source/technical.html:
added support for Technisat MediaFocus I,
moved lirc_gpio_p to lirc_gpio,
removed lirc_gpio_i,
added support of Fly98 TV card to lirc_gpio (interrupt driven),
removed old lirc_fly98 driver,
adapted lirc_i2c and lirc_gpio to current bttv versions
2000-12-03 Christoph Bartelmus <columbus@k7>
* drivers/lirc_dev/lirc_dev.h, drivers/lirc_gpio/lirc_gpio_i.c, drivers/lirc_gpio/lirc_gpio_p.c, drivers/lirc_dev/lirc_dev.c:
some clean-ups
* remotes/generic/DENON.conf, remotes/generic/NEC-AIWA.conf, remotes/generic/NEC.conf, remotes/generic/NEC-pulse.conf, remotes/generic/NEC-short-pulse.conf, remotes/generic/RC-5.conf, remotes/generic/RECS80.conf, remotes/generic/SONY12.conf, remotes/generic/SONY20.conf:
added generic config files for various protocols
2000-11-30 Christoph Bartelmus <columbus@k7>
* drivers/lirc_i2c/lirc_i2c.c: PixelView support, untested
2000-11-26 Christoph Bartelmus <columbus@k7>
* doc/html-source/install.html, doc/html-source/programs.html:
documentation updates
* drivers/lirc_gpio/lirc_gpio_i.c, drivers/lirc_gpio/lirc_gpio_p.c:
update for 2.4.x kernels
2000-11-25 Christoph Bartelmus <columbus@k7>
* daemons/hw_default.c, daemons/lircd.c, doc/html-source/install.html:
better min_repeat handling
2000-11-24 Christoph Bartelmus <columbus@k7>
* doc/html-source/install.html, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c, NEWS, setup.sh:
changes to transmit code in lirc_serial
2000-11-23 Christoph Bartelmus <columbus@k7>
* doc/html-source/install.html, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c:
compiling the serial port module is not really mandatory
* daemons/irrecord.c: cosmetic changes
* acinclude.m4: fixed problem when mktemp is not installed
2000-11-16 Christoph Bartelmus <columbus@k7>
* doc/html-source/install.html: fixed bad link
2000-11-13 Christoph Bartelmus <columbus@k7>
* daemons/irrecord.c, doc/html-source/programs.html:
existing config files now can be used as templates for new remotes
* remotes/sigma_designs/lircd.conf.realmagic:
config file should be correct now
* setup.sh: added Miro PCTV to list of supported devices
2000-11-11 Christoph Bartelmus <columbus@k7>
* ANNOUNCE, doc/html-source/foot.html, doc/html-source/help.html, doc/html-source/install.html:
LIRC homepage moved to www.lirc.org
2000-11-10 Christoph Bartelmus <columbus@k7>
* remotes/sigma_designs/lircd.conf.realmagic, configure.in, daemons/irrecord.c, setup.sh:
added support for REALmagic remote control from Sigma Designs
2000-11-09 Christoph Bartelmus <columbus@k7>
* tools/lirc_client.c, tools/lirc_client.h, doc/html-source/configure.html, NEWS:
added startup_mode flag to .lircrc config file,
thanks to Bruno Coudoin for the patches
2000-11-01 Christoph Bartelmus <columbus@k7>
* doc/html-source/programs.html:
most users probably don't know how to pass arguments to the slave program
* drivers/lirc_i2c/lirc_i2c.c: workaround for I2C read failures
2000-10-23 Christoph Bartelmus <columbus@k7>
* acinclude.m4:
configure script broke with 2.2.18pre* kernels because it failed to recognise the correct CC value,
it should work again, but it's still a hack
2000-10-22 Christoph Bartelmus <columbus@k7>
* doc/html-source/configure.html, doc/html-source/install.html, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c:
documentation updated
2000-10-10 Christoph Bartelmus <columbus@k7>
* daemons/irrecord.c, drivers/lirc_i2c/lirc_i2c.c, configure.in:
enable devfs only for lirc_dev
2000-10-08 Christoph Bartelmus <columbus@k7>
* contrib/lircd.suse6, contrib/lirc.suse6.2: renamed file
2000-10-07 Christoph Bartelmus <columbus@k7>
* drivers/lirc_i2c/lirc_i2c.c: uploaded Gerd's patch,
Hauppauge support should work again
2000-10-02 Christoph Bartelmus <columbus@k7>
* daemons/serial.c: removed too much
2000-10-01 Christoph Bartelmus <columbus@k7>
* setup.sh, tools/irxevent.c: small fix and enhancement,
thanks to Tom Hudec <Tom.Hudec@seznam.cz> for the patch
2000-09-30 Christoph Bartelmus <columbus@k7>
* configure.in, doc/html-source/doc.html, doc/html-source/install.html, drivers/lirc_dev/lirc_dev.c, drivers/lirc_haup/.cvsignore, drivers/lirc_haup/lirc_haup.c, drivers/lirc_haup/Makefile.am, drivers/lirc_i2c/.cvsignore, drivers/lirc_i2c/lirc_i2c.c, drivers/lirc_i2c/Makefile.am, drivers/Makefile.am, NEWS, README, remotes/pixelview/lircd.conf.playtv_bt878, setup.sh:
started adding support for Pixelview PlayTV (bt878) card,
not working yet
* daemons/serial.c, tools/lirc_client.c: small fixes
2000-09-27 Christoph Bartelmus <columbus@k7>
* configure.in, drivers/lirc_gpio/lirc_gpio_p.c, setup.sh:
added support for PixelView PlayTV PAK TV card
* acconfig.h, TODO: temporary devfs work-around
* daemons/irrecord.c, TODO: reducing misunderstandings
* drivers/lirc_dev/lirc_dev.c:
devfs support officially will come with 2.4.x AFAIK
2000-09-26 Christoph Bartelmus <columbus@k7>
* setup.sh: substituted which with type
2000-09-21 Christoph Bartelmus <columbus@k7>
* drivers/lirc_haup/lirc_haup.c, drivers/lirc_gpio/lirc_gpio_p.c:
lirc_haup needs bttv module
2000-09-19 Christoph Bartelmus <columbus@k7>
* tools/lirc_client.c: bugfix and additional consistency tests
* contrib/lircs: added LIRC starter stript,
thanks to Michael Kammerer for this contribution
2000-09-18 Christoph Bartelmus <columbus@k7>
* tools/xmode2.c: added alternative display mode for xmode2,
thanks to Peter T. Whiting for the patch
* configure.in, drivers/lirc_gpio/lirc_gpio_p.c, NEWS, remotes/chronos/lircd.conf.chronos, setup.sh, ANNOUNCE:
added support for Chronos Video Shuttle II TV card,
thanks to Tonu Raitviir <jussuf@BumpClub.ee> for patches
2000-09-17 Christoph Bartelmus <columbus@k7>
* doc/html-source/foot.html, drivers/lirc_gpio/lirc_gpio_p.c, NEWS:
fixed typo
2000-09-07 Christoph Bartelmus <columbus@k7>
* drivers/lirc_dev/lirc_dev.c, drivers/lirc_gpio/lirc_gpio_p.c, setup.sh:
added support for Phoebe Tv Master
2000-09-03 Christoph Bartelmus <columbus@k7>
* daemons/hw_default.c, daemons/irrecord.c, daemons/receive.c, daemons/receive.h, daemons/transmit.c, daemons/transmit.h:
recognition of toggle bit should work again,
implemented recognition of min_repeat
2000-08-28 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio_p.c: mapping should be correct now
2000-08-26 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio_p.c: moved some bits around
* ANNOUNCE, drivers/lirc_serial/lirc_serial.c, NEWS, setup.sh:
ok, IRdeo support should *work* now,
transmitting is also implemented
2000-08-25 Christoph Bartelmus <columbus@k7>
* daemons/hw_caraca.c, daemons/hw_caraca.h, remotes/caraca/lircd.conf.caraca, remotes/caraca/lircrc.caraca:
added caraca files...
2000-08-23 Christoph Bartelmus <columbus@k7>
* acconfig.h, configure.in, drivers/lirc_serial/lirc_serial.c, NEWS, setup.sh:
Added support for IRdeo.
Currently only receiving works. Many thanks to Hans-Hermann Redenius for contributing a device.
* daemons/Makefile.am, acconfig.h, configure.in, NEWS, setup.sh:
Konrad Riedel has added support for CARACA (caraca.sourceforge.net)
2000-08-17 Christoph Bartelmus <columbus@k7>
* daemons/lircd.c: bugfix: don't close device during repeating
2000-08-12 Christoph Bartelmus <columbus@k7>
* doc/html-source/install.html, drivers/lirc_serial/lirc_serial.c:
doc updates
2000-08-05 Christoph Bartelmus <columbus@k7>
* setup.sh: added bttv card ids
2000-07-29 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio_p.c: this mask seems to be correct
2000-07-28 Christoph Bartelmus <columbus@k7>
* doc/html-source/install.html: explained bttv autodetection
* AUTHORS, doc/html-source/technical.html, drivers/lirc_dev/lirc_dev.c, drivers/lirc_dev/lirc_dev.h, drivers/lirc_gpio/lirc_gpio_i.c, drivers/lirc_gpio/lirc_gpio_p.c, remotes/pixelview/lircd.conf.playtv_pro, remotes/pixelview/lircrc.playtv_pro:
code clean-up (Artur)
2000-07-27 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio_p.c, remotes/cph03x/lircd.conf.cph03x, setup.sh:
some TV card changes
2000-07-26 Christoph Bartelmus <columbus@k7>
* ChangeLog, configure.in, daemons/ir_remote.h, daemons/lircd.c, daemons/lircd.h, doc/html-source/technical.html, drivers/lirc_dev/lirc_dev.c, NEWS, TODO:
implemented min_repeat (one TODO item less)
2000-07-23 Christoph Bartelmus <columbus@k7>
* drivers/lirc_dev/lirc_dev.c: fix for 2.4.0-test4
* configure.in: fixed typo in configure script
2000-07-21 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio_p.c, drivers/lirc_gpio/Makefile.am, ANNOUNCE, configure.in, daemons/.cvsignore, doc/html-source/foot.html, doc/html-source/install.html, NEWS:
releasing lirc-0.6.1
2000-07-19 Christoph Bartelmus <columbus@k7>
* remotes/avermedia/lircd.conf.avermedia, remotes/avermedia/lircd.conf.avermedia98, remotes/avermedia/lircmd.conf.avermedia, remotes/avermedia/lircmd.conf.avermedia98, setup.sh, configure.in:
added config files for old AVerMedia cards
2000-07-13 Christoph Bartelmus <columbus@k7>
* ANNOUNCE, ChangeLog, daemons/config_file.c, daemons/dump_config.c, daemons/hw_default.c, daemons/ir_remote.h, daemons/Makefile.am, daemons/slinke.c, daemons/slinke.h:
added a tool to convert Slink-e device files to LIRC config files
* configure.in, drivers/lirc_gpio/lirc_gpio_p.c, setup.sh:
added CPH6xx support (untested)
2000-07-08 Christoph Bartelmus <columbus@k7>
* configure.in, daemons/hw_pinsys.c, daemons/hw_pinsys.h, daemons/hw_pixelview.c, daemons/Makefile.am, NEWS, remotes/pinnacle_systems/lircd.conf.pctv, setup.sh:
added support for PCTV receiver,
many thanks to Bart Alewijnse for contributing the driver
* acconfig.h, configure.in, daemons/config_file.c, daemons/hw_default.c, daemons/hw_irman.c, daemons/hw_logitech.c, daemons/hw_pixelview.c, daemons/hw_slinke.c, daemons/irrecord.c, daemons/ir_remote.c, daemons/lircd.c, daemons/lircd.h, daemons/lircmd.c, daemons/receive.c, daemons/serial.c, daemons/transmit.c, doc/html-source/programs.html, NEWS, setup.sh:
lircd now can be configured to use syslogd for log output,
thanks to Rainer Clasen for the suggestion
* doc/html-source/programs.html, NEWS, tools/irexec.c, tools/Makefile.am:
added --daemon option to irexec (suggestion by Eric Crahen)
2000-07-06 Christoph Bartelmus <columbus@k7>
* daemons/config_file.c, daemons/dump_config.c, daemons/irrecord.c, daemons/ir_remote.c, daemons/ir_remote.h, daemons/lircd.c, daemons/receive.c, daemons/transmit.c, NEWS:
added RC-MM support
2000-07-05 Christoph Bartelmus <columbus@k7>
* AUTHORS, daemons/config_file.h, daemons/dump_config.c, daemons/hw_default.c, daemons/irrecord.c, daemons/ir_remote.h, daemons/receive.c, daemons/receive.h, daemons/transmit.c, daemons/transmit.h, NEWS, setup.sh:
added RC-6 support
* daemons/hw_slinke.c: made memory allocations safer,
freeing allocations
2000-07-02 Christoph Bartelmus <columbus@k7>
* AUTHORS, configure.in, daemons/hw_slinke.c, daemons/hw_slinke.h, daemons/Makefile.am, setup.sh:
added support for Slink-e from Nirvis Systems,
code provided by Max Spring
* daemons/hw_logitech.c, daemons/hw_pixelview.c:
added O_NONBLOCK,O_NOCTTY flags to open()
* drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c:
nobody reads documentations...
2000-06-24 Christoph Bartelmus <columbus@k7>
* daemons/receive.c: fix for unusual header
2000-06-22 Christoph Bartelmus <columbus@k7>
* configure.in, drivers/lirc_gpio/lirc_gpio_p.c, setup.sh:
support for CPH03x TV cards (untested)
* doc/html-source/install.html, setup.sh: UIR=Irman
2000-06-18 Christoph Bartelmus <columbus@k7>
* drivers/lirc_dev/lirc_dev.c, drivers/lirc_fly98/lirc_fly98.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c, drivers/lirc_sir/lirc_sir.c:
fixes for latest kernel,
thanks to wollny for the patch
2000-06-12 Christoph Bartelmus <columbus@k7>
* configure.in, daemons/hw_default.c, daemons/hw_default.h, daemons/Makefile.am, daemons/receive.c, daemons/receive.h, daemons/serial.c, daemons/serial.h, daemons/transmit.c, daemons/transmit.h:
internal change of code structure
2000-06-11 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio_p.c, remotes/avermedia/lircd.conf.avermedia:
AVerMedia config updates
2000-06-02 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio_p.c, remotes/avermedia/lircd.conf.avermedia:
now should work with TVCapture98 cards
* drivers/lirc_dev/lirc_dev.c, drivers/lirc_parallel/lirc_parallel.c:
some SMP fixes (thanks to Gert)
2000-05-27 Christoph Bartelmus <columbus@k7>
* setup.sh: chaged default for SOFT_CARRIER to enabled
2000-05-22 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio_p.c:
finally we get it right, TVPhone98 works
2000-05-21 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio_p.c:
you were right Artur, it could not be correct... :)
2000-05-15 jochym <jochym@k7>
* drivers/lirc_fly98/ChangeLog:
This is still version 0.1 of the software. A new patches has been added
to the archive: for kernel 2.2.14 and 2.2.15.
* drivers/lirc_fly98/README: 2.2.15 kernel patch added.
* drivers/lirc_fly98/patches/lirc_fly98-kernel-2.2.15.diff:
Patch for 2.2.15 kernel bttv driver added.
2000-05-15 Christoph Bartelmus <columbus@k7>
* doc/html-source/install.html: lirc_gpio_p doc updates
2000-05-14 Christoph Bartelmus <columbus@k7>
* doc/html-source/help.html: new mailing list
2000-05-11 Christoph Bartelmus <columbus@k7>
* acconfig.h, daemons/lircd.c:
lircd now creates pid lockfile in /var/run
2000-05-10 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/lirc_gpio_p.c: code clean-ups (Artur)
2000-05-09 Christoph Bartelmus <columbus@k7>
* drivers/lirc_aver/.cvsignore, drivers/lirc_aver/lirc_aver.c, drivers/lirc_aver/Makefile.am, drivers/lirc_aver/patches/lirc_aver-bttv-0.6.4.diff, drivers/lirc_aver/patches/lirc_aver-kernel-2.2.10.diff, drivers/lirc_aver/patches/lirc_aver-kernel-2.2.12.diff, drivers/lirc_pixview/.cvsignore, drivers/lirc_pixview/lirc_pixview.c, drivers/lirc_pixview/Makefile.am:
removed obsoleted drivers
2000-05-06 Christoph Bartelmus <columbus@k7>
* configure.in, daemons/hw_default.c, daemons/hw_default.h, drivers/lirc_gpio/lirc_gpio_p.c, remotes/avermedia/lircd.conf.avermedia, remotes/avermedia/lircmd.conf.avermedia:
changes to make AverMedia TVCapture98 work with the correct config file
2000-05-05 Christoph Bartelmus <columbus@k7>
* doc/html-source/install.html, doc/html-source/technical.html, drivers/lirc_gpio/lirc_gpio_p.c:
changed algorithm of get_key() to allow AVerMedia support
* drivers/lirc_dev/lirc_dev.c:
changed order of devfs registration (Artur)
2000-05-05 jochym <jochym@k7>
* drivers/lirc_fly98/ChangeLog:
Documentation corrected. Patch for kernel 2.2.14 added.
* drivers/lirc_fly98/patches/lirc_fly98-kernel-2.2.14.diff, drivers/lirc_fly98/README:
Documentation corrected. Added patch for 2.2.14 kernel.
* drivers/lirc_fly98/README: Instructions updated and corrected.
2000-05-04 Christoph Bartelmus <columbus@k7>
* drivers/lirc_dev/lirc_dev.c: added include for smp_lock.h
2000-05-03 Christoph Bartelmus <columbus@k7>
* daemons/lircd.c, daemons/lircd.h, daemons/lircmd.c, doc/html-source/programs.html:
added --permission option,
lircd creates /dev/lircd if it does not exist
* daemons/ir_remote.c, daemons/lircd.c, daemons/lircmd.c, doc/html-source/programs.html:
added --nodaemon option
* configure.in: removed superfluous =
2000-04-29 Christoph Bartelmus <columbus@k7>
* acconfig.h, acinclude.m4, configure.in, drivers/lirc_dev/lirc_dev.c:
added devfs support to lirc_dev,
thanks to Gerd Knorr for patches
* drivers/lirc_haup/lirc_haup.c: fixed handling of minor-numbers
* doc/html-source/install.html:
too many people are still trying to run mode2
* daemons/irrecord.c: added some maintainer-only functions
2000-04-24 Christoph Bartelmus <columbus@k7>
* daemons/config_file.c, daemons/config_file.h, daemons/dump_config.c, daemons/hw_default.c, daemons/ir_remote.h, drivers/lirc.h, drivers/lirc_serial/lirc_serial.c, NEWS:
added duty_cycle option to lircd.conf
* setup.sh: sorry guys, setup.sh was broken
2000-04-19 Christoph Bartelmus <columbus@k7>
* daemons/irrecord.c: making things idiot proof, my fault ;-)
2000-04-18 Christoph Bartelmus <columbus@k7>
* acconfig.h, configure.in, drivers/lirc_haup/lirc_haup.c, drivers/lirc_haup/lirc_haup.h, drivers/lirc_haup/lirc_haup_new.c, drivers/lirc_haup/lirc_haup_new.h, drivers/lirc_haup/Makefile.am, drivers/lirc_haup/patches/lirc_haup-linux-2.2.12.diff, setup.sh:
removed old (buggy) Hauppauge driver
* daemons/hw_default.c, daemons/irrecord.c, daemons/lircd.c, NEWS:
hardware is only initialized if clients have connected to lircd
* doc/html-source/programs.html:
added pointer to remote control section
2000-04-17 Christoph Bartelmus <columbus@k7>
* daemons/irrecord.c, TODO: is this clear enough ?
* daemons/lircd.c: SIGHUP does again what it should
2000-04-15 Christoph Bartelmus <columbus@k7>
* daemons/lircd.c, daemons/lircd.h, daemons/lircmd.c, TODO:
implemented proper signal handlers
2000-04-13 Christoph Bartelmus <columbus@k7>
* remotes/pixelview/lircmd.conf.playtv_pro, configure.in:
added lircmd config file for PixelView PlayTV pro cards
2000-04-11 Christoph Bartelmus <columbus@k7>
* configure.in, daemons/Makefile.am, TODO: daemon(), where are you?
* drivers/lirc_haup/lirc_haup_new.c: changed default minor number
* doc/html-source/doc.html, doc/html-source/technical.html:
added short info about lirc_dev purpose and usage
* doc/html-source/install.html:
added short info about lirc_gpio_i and lirc_gpio_p with parameter descriptions
* drivers/lirc_dev/lirc_dev.c:
fixed compatibility bug with DECLARE_WAITQUEUE definition (required for 2.3.x kernels)
2000-04-06 Christoph Bartelmus <columbus@k7>
* drivers/lirc_gpio/Makefile.am:
now automake uses top_module variable to find which module is valid
* drivers/lirc_gpio/lirc_gpio_i.c, drivers/lirc_gpio/lirc_gpio_p.c:
minor parameter can be now negative and it has -1 as default value
* drivers/lirc_dev/Makefile.am:
added EXPORT_SYMTAB symbol definition to compiler flags
* drivers/lirc_dev/lirc_dev.c:
fixed logical bug in lirc_read function, fixed bug in interpretation of minor device number in lirc_register_plugin
* configure.in:
added a top_module variable which is used in lirc_gpio directory for decision which module (lirc_gpio_p or lirc_gpio_i) to use
2000-04-02 Christoph Bartelmus <columbus@k7>
* drivers/lirc_serial/lirc_serial.c: fixes for 2.3.x
* remotes/pixelview/lircd.conf.playtv_pro, remotes/pixelview/lircrc.playtv_pro:
config files for PixelView PlayTV pro card
* doc/html-source/install.html, drivers/lirc_dev/.cvsignore, drivers/lirc_dev/lirc_dev.c, drivers/lirc_dev/lirc_dev.h, drivers/lirc_dev/Makefile.am, drivers/lirc_gpio/.cvsignore, drivers/lirc_gpio/lirc_gpio_i.c, drivers/lirc_gpio/lirc_gpio_p.c, drivers/lirc_gpio/Makefile.am, drivers/lirc_haup/lirc_haup.c, drivers/lirc_haup/lirc_haup.h, drivers/lirc_haup/lirc_haup_new.c, drivers/lirc_haup/lirc_haup_new.h, drivers/Makefile.am, configure.in, Makefile.am, NEWS, setup.sh:
added hardware abstraction layer for TV cards(Artur Lipowski <lipowski@comarch.pl>)
* doc/html-source/configure.html: forgot to mention TOGGLE_ACTIVATE
* daemons/lircmd.c: fixed leave semantics
* ANNOUNCE: noticed error 1 min after release...
* ANNOUNCE, doc/html-source/foot.html, doc/html-source/head1.html, doc/html-source/head2.html, doc/html-source/help.html, NEWS:
releasing lirc-0.6.0
2000-04-01 Christoph Bartelmus <columbus@k7>
* setup.sh: last pre release
2000-03-30 Christoph Bartelmus <columbus@k7>
* configure.in, Makefile.am, setup.sh, TODO:
probably broke configuration <g>
2000-03-27 Christoph Bartelmus <columbus@k7>
* doc/html-source/doc.html, doc/html-source/foot.html, doc/html-source/programs.html, doc/irxevent.keys, doc/Makefile.am:
done
2000-03-25 Christoph Bartelmus <columbus@k7>
* ChangeLog: oops, don't need any ChangeLog in CVS
* tools/xmode2.c, ChangeLog, doc/html-source/programs.html, tools/lirc_client.c, tools/smode2.c:
95% done
* doc/html-source/configure.html, doc/html-source/install.html:
ispell is your friend
* drivers/lirc_serial/lirc_serial.c:
sense variable could tilt in undesired situations
* tools/irpty.c:
found some bugs while trying to understand what this program does
2000-03-24 Christoph Bartelmus <columbus@k7>
* doc/html-source/install.html, doc/html-source/programs.html, doc/html-source/technical.html:
final spurt
* doc/html-source/install.html: compile kernel serial support as module
2000-03-23 Christoph Bartelmus <columbus@k7>
* drivers/lirc_serial/lirc_serial.c, NEWS, TODO:
SMP support, fixed many minor implementation drawbacks
* drivers/lirc_parallel/lirc_parallel.c: fixed minor flaw
2000-03-21 Christoph Bartelmus <columbus@k7>
* daemons/lircd.c, daemons/lircmd.c, TODO:
finally fixed daemonize code (I hope)
2000-03-18 Christoph Bartelmus <columbus@k7>
* setup.sh: made clear serial port requirements
2000-03-16 Christoph Bartelmus <columbus@k7>
* daemons/hw_default.c, doc/html-source/install.html, tools/xmode2.c:
some small fixes
2000-03-14 Christoph Bartelmus <columbus@k7>
* doc/html-source/help.html, doc/html-source/install.html, doc/html-source/configure.html, doc/html-source/doc.html, doc/html-source/foot.html:
only section 3 missing
2000-03-12 Christoph Bartelmus <columbus@k7>
* configure.in: better use some default values than :
2000-03-10 Christoph Bartelmus <columbus@k7>
* drivers/Makefile.am: removed Hauppauge driver too early
2000-03-09 Christoph Bartelmus <columbus@k7>
* drivers/lirc_sir/.cvsignore: fixed file name
* ANNOUNCE, configure.in, drivers/Makefile.am:
started removing unmaintained drivers
* doc/html-source/configure.html, doc/html-source/doc.html, doc/html-source/install.html, doc/html-source/technical.html:
doc 75% ready
2000-03-07 Christoph Bartelmus <columbus@k7>
* doc/html-source/doc.html, doc/html-source/install.html, doc/html-source/configure.html:
documentation starts becoming useful
2000-03-03 Christoph Bartelmus <columbus@k7>
* AUTHORS, configure.in, drivers/lirc_sir/.cvsignore, drivers/lirc_sir/lirc_sir.c, drivers/lirc_sir/Makefile.am, drivers/Makefile.am, NEWS, setup.sh, TODO:
added SIR IrDA driver from Milan Pikula
2000-03-02 Christoph Bartelmus <columbus@k7>
* tools/lirc_client.c:
fixed some more init problems (again thanks to Crispin Flowerday)
2000-02-19 Christoph Bartelmus <columbus@k7>
* tools/lirc_client.c:
fixed reinit problem (thanks to Crispin Flowerday for the hint)
2000-02-12 Christoph Bartelmus <columbus@k7>
* daemons/lircmd.c: release buttons when deactivated
* acconfig.h, configure.in, drivers/lirc_haup/lirc_haup.c, drivers/lirc_haup/lirc_haup_new.c, drivers/lirc_haup/lirc_haup_new.h, drivers/lirc_haup/Makefile.am, setup.sh:
added Hauppauge driver that uses new I2C layer,
thanks to Tom Lees for the port to the new layer
2000-02-07 Christoph Bartelmus <columbus@k7>
* remotes/pixelview/lircd.conf.remotemaster, remotes/pixelview/lircmd.conf.remotemaster:
added config file for lircmd
2000-02-05 Christoph Bartelmus <columbus@k7>
* drivers/lirc_fly98/lirc_fly98.c, drivers/lirc_haup/lirc_haup.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c:
corrected EINTR semantics
* daemons/hw_pixelview.c, remotes/pixelview/lircd.conf.remotemaster:
PixelView RemoteMaster 2000 should work now
2000-02-02 Christoph Bartelmus <columbus@k7>
* doc/html-source/technical.html, tools/irexec.c, tools/irpty.c, tools/irxevent.c, tools/lirc_client.c, tools/lirc_client.h:
cleaned up library interface
* daemons/irrecord.c: added help string
* acconfig.h: fixed --disable-long-codes
2000-01-24 Christoph Bartelmus <columbus@k7>
* drivers/lirc_haup/lirc_haup.c, drivers/lirc_haup/lirc_haup.h:
bug hunting
* daemons/irrecord.c: minor fixes
* remotes/README: pointer to remotes
2000-01-23 Christoph Bartelmus <columbus@k7>
* daemons/lircd.c: minor protocol bug fixed
2000-01-20 Christoph Bartelmus <columbus@k7>
* Makefile.am: remove CVS traces from distribution
2000-01-18 Christoph Bartelmus <columbus@k7>
* drivers/lirc_fly98/Makefile.am: correctec typo
* configure.in, remotes/logitech/lircd.conf.logitech, remotes/logitech/lircmd.conf.logitech:
added config files for Logitech receiver
1999-12-29 jochym <jochym@k7>
* drivers/lirc_fly98/kbttv2210-gpiomon.diff, drivers/lirc_fly98/kbttv2211-gpiomon.diff, drivers/lirc_fly98/patches/lirc_fly98-bttv-0.6.3.diff, drivers/lirc_fly98/patches/lirc_fly98-kernel-2.2.10.diff, drivers/lirc_fly98/patches/lirc_fly98-kernel-2.2.11.diff, drivers/lirc_fly98/bttv063-gpiomon.diff:
Diff files moved to the patches directory and commited to cvs.
* drivers/lirc_fly98/Makefile.am, drivers/lirc_fly98/README:
Patches renamed and moved to patches subdirectory.
Makefile.am modified to include distribution of patches.
1999-12-12 Christoph Bartelmus <columbus@k7>
* doc/html-source/help.html, doc/html-source/technical.html:
some more docs
1999-11-22 Christoph Bartelmus <columbus@k7>
* doc/html-source/doc.html, doc/html-source/help.html, doc/html-source/technical.html:
some more docs
* drivers/lirc_haup/lirc_haup.c:
uploaded patch from Mike <rickettm@ox.compsoc.net> for 2.3.x kernels
* drivers/lirc_serial/lirc_serial.c:
removed autodetection failure warning
1999-11-07 Christoph Bartelmus <columbus@k7>
* daemons/lircd.c, daemons/lircmd.c:
glibc-2.1 seems to choke on fclose(stdin), hmm...
* doc/html-source/doc.html, doc/html-source/foot.html, doc/html-source/help.html, doc/html-source/technical.html:
updated docs
1999-10-27 Christoph Bartelmus <columbus@k7>
* configure.in: fixed check for libirman
1999-10-20 Christoph Bartelmus <columbus@k7>
* drivers/lirc_aver/Makefile.am: corrected EXTRA_DIST line
1999-10-19 denis <denis@k7>
* drivers/lirc_aver/lirc-aver-2.2.10.patch.gz, drivers/lirc_aver/Makefile.am, drivers/lirc_aver/patches/lirc_aver-bttv-0.6.4.diff, drivers/lirc_aver/patches/lirc_aver-kernel-2.2.10.diff, drivers/lirc_aver/patches/lirc_aver-kernel-2.2.12.diff:
Added patches with lirc stuff for kernel-2.2.10/2.2.12 and bttv-0.6.4
1999-10-18 Christoph Bartelmus <columbus@k7>
* daemons/.cvsignore: added .libs
* contrib/lircd.suse6: init script for S.u.S.E. 6.2
* daemons/irrecord.c, daemons/ir_remote.h, ChangeLog, daemons/hw_default.c:
NO_HEAD_REP now works
many thanks to Ti Leggett for his help
* tools/mode2.c, tools/smode2.c, tools/xmode2.c:
more understandable error message
1999-10-14 Christoph Bartelmus <columbus@k7>
* doc/html-source/doc.html, doc/html-source/help.html: doc updates
* daemons/irrecord.c: fixed problem with seldom protocol (untested)
1999-10-09 Christoph Bartelmus <columbus@k7>
* .cvsignore, daemons/.cvsignore, doc/.cvsignore, tools/.cvsignore:
updated some .cvsignore files
* drivers/lirc_haup/lirc_haup.c: don't try to compile with old kernels
1999-10-08 Christoph Bartelmus <columbus@k7>
* daemons/Makefile.am: create /usr/local/etc/ if not present
1999-10-03 Christoph Bartelmus <columbus@k7>
* drivers/lirc_haup/Makefile.am, drivers/lirc_haup/patches/lirc_haup-linux-2.2.12.diff:
added kernel patch for Hauppauge driver
1999-09-28 Christoph Bartelmus <columbus@k7>
* drivers/lirc_haup/lirc_haup.c, drivers/lirc_haup/lirc_haup.h, lirc-bttv-2.2.7.patch.gz:
removed old patch
fixed poll semantics
1999-09-26 Christoph Bartelmus <columbus@k7>
* drivers/lirc_haup/lirc_haup.c: some locking fixes
patch for 2.3.x provided by Mike Ricketts
1999-09-25 Christoph Bartelmus <columbus@k7>
* tools/smode2.c: fixed typo
1999-09-24 jochym <jochym@k7>
* drivers/lirc_fly98/ChangeLog: Typos corrected.
1999-09-21 Christoph Bartelmus <columbus@k7>
* drivers/lirc_haup/lirc_haup.c: fixed request_module() problem
hm, why can't you use the return value ?
1999-09-16 Christoph Bartelmus <columbus@k7>
* doc/html-source/install.html: added updating infos
1999-09-16 denis <denis@k7>
* drivers/lirc_aver/lirc-aver-2.2.10.patch.gz:
Patch against kernel 2.2.10 for AverMedia lirc driver functionality.
1999-09-15 Christoph Bartelmus <columbus@k7>
* tools/mode2.c, tools/smode2.c, tools/xmode2.c:
allow only MODE2 drivers
1999-09-13 Christoph Bartelmus <columbus@k7>
* ANNOUNCE, doc/html-source/doc.html, doc/html-source/foot.html, doc/html-source/programs.html, INSTALL, README:
writing docs...
* doc/html-source/configure.html, doc/html-source/doc.html, doc/html-source/foot.html, doc/html-source/head1.html, doc/html-source/head2.html, doc/html-source/help.html, doc/html-source/install.html, doc/html-source/programs.html, doc/html-source/technical.html, doc/images/diode.gif, doc/images/lirc.gif, doc/images/marb18.jpg, doc/Makefile.am, doc/release-html.sh:
started to write some docu... (thanks to Karsten)
* configure.in, contrib/lircd.conf, daemons/ir_remote.c, daemons/ir_remote.h, daemons/lircd.c, TODO, tools/irexec.c, tools/irpty.c, tools/irw.c, tools/irxevent.c, tools/lirc_client.c, tools/lirc_client.h, tools/Makefile.am, tools/mode2.c, ANNOUNCE, AUTHORS, Makefile.am, NEWS:
moved lirc_client into a library
1999-09-12 Christoph Bartelmus <columbus@k7>
* daemons/irrecord.c, NEWS, setup.sh, TODO:
changes not worth mentioning
1999-09-09 jochym <jochym@k7>
* drivers/lirc_fly98/ChangeLog, drivers/lirc_fly98/README:
Docs (Readme, ChangeLog) corrected and updated.
1999-09-07 Christoph Bartelmus <columbus@k7>
* drivers/lirc_haup/lirc_haup.c: added missng &'s
* configure.in, tools/irxevent.c:
merged with irxevent-0.5.0 with small modifications
1999-09-06 Christoph Bartelmus <columbus@k7>
* configure.in, daemons/hw_irman.c, daemons/hw_irman.h, daemons/hw_logitech.c, daemons/hw_logitech.h, daemons/hw_pixelview.c, daemons/hw_pixelview.h, daemons/irrecord.c, daemons/ir_remote.c, daemons/ir_remote.h, daemons/Makefile.am, daemons/serial.c, drivers/irman/.cvsignore, drivers/irman/lirmand.c, drivers/irman/Makefile.am, drivers/Makefile.am, NEWS, TODO:
removed lirmand,
added support of shift encoded remotes to irrecord
1999-09-02 Christoph Bartelmus <columbus@k7>
* daemons/config_file.c, daemons/config_file.h, daemons/dump_config.c, daemons/dump_config.h, daemons/hardware.h, daemons/hw_default.c, daemons/hw_default.h, daemons/hw_logitech.c, daemons/hw_logitech.h, daemons/hw_pixelview.c, daemons/hw_pixelview.h, daemons/irrecord.c, daemons/ir_remote.c, daemons/ir_remote.h, drivers/irman/lirmand.c, drivers/lirc.h, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c, drivers/Makefile.am, tools/mode2.c, tools/smode2.c, tools/xmode2.c:
changed type of all signal related data to lirc_t,
this should fix incompatibilities with Alphas
1999-08-30 Christoph Bartelmus <columbus@k7>
* daemons/irrecord.c: implemented repeat code support,
thanks to Joachim Groh for suggestions
1999-08-25 Christoph Bartelmus <columbus@k7>
* tools/xmode2.c: fixed typos
1999-08-24 Christoph Bartelmus <columbus@k7>
* tools/xmode2.c: uploaded new version from Heinrich Langos,
modified it a bit on occation
1999-08-18 Christoph Bartelmus <columbus@k7>
* daemons/lircd.c: added debug option
1999-08-16 jochym <jochym@k7>
* drivers/lirc_fly98/kbttv2211-gpiomon.diff:
Small bugs (typos) in the patch fixed.
Verified that it works with stock 2.2.11 kernel.
1999-08-15 Christoph Bartelmus <columbus@k7>
* daemons/hw_default.c: improved sync
1999-08-15 jochym <jochym@k7>
* drivers/lirc_fly98/kbttv2211-gpiomon.diff:
Added patch for version 2.2.11 of the linux kernel.
1999-08-13 Christoph Bartelmus <columbus@k7>
* daemons/hw_logitech.c, daemons/hw_pixelview.c, daemons/irrecord.c:
further improved irrecord
* daemons/ir_remote.c: added heuristic for repeats
* daemons/hw_default.c, drivers/lirc_serial/lirc_serial.c:
moved noise filter to device driver
1999-08-12 Christoph Bartelmus <columbus@k7>
* configure.in, daemons/hw_logitech.c, daemons/hw_logitech.h, setup.sh:
added support of Logitech/AST receiver
many thanks to Isaac Lauer for the patch
* daemons/hw_default.h, daemons/hw_pixelview.c, daemons/irrecord.c, daemons/ir_remote.h, daemons/Makefile.am, tools/irrecord.c, tools/Makefile.am:
moved irrecord to daemons directory
started to rewrite irrecord
this version is far from being usable
* daemons/hw_default.c: added noise filter
1999-08-07 denis <denis@k7>
* setup.sh:
Fixed tiny mistake with AverMadia
1999-08-06 Christoph Bartelmus <columbus@k7>
* acconfig.h, configure.in, daemons/Makefile.am, drivers/lirc_aver/.cvsignore, drivers/lirc_fly98/.cvsignore, drivers/lirc_haup/.cvsignore, drivers/lirc_serial/lirc_serial.c, setup.sh:
automatic install of config files
receiver only support in lirc_serial
1999-08-04 Christoph Bartelmus <columbus@k7>
* daemons/lircmd.c, drivers/lirc_pixview/.cvsignore, drivers/lirc_pixview/lirc_pixview.c, drivers/lirc_pixview/Makefile.am, drivers/Makefile.am, remotes/pixelview/lircd.conf.playtv, setup.sh, configure.in:
added Nathan Hand's patch for Pixelview TV cards
* drivers/lirc_haup/lirc_haup.h, drivers/lirc_haup/lirc_haup.c:
implemented buffer
added request_module for bttv
fixed bug in locking
1999-08-03 Christoph Bartelmus <columbus@k7>
* .cvsignore, daemons/.cvsignore, drivers/.cvsignore, drivers/irman/.cvsignore, drivers/lirc_aver/.cvsignore, drivers/lirc_fly98/.cvsignore, drivers/lirc_haup/.cvsignore, drivers/lirc_parallel/.cvsignore, drivers/lirc_serial/.cvsignore, tools/.cvsignore:
added .cvsignore files
* drivers/lirc_aver/Makefile.am, drivers/lirc_fly98/Makefile.am, drivers/lirc_haup/Makefile.am, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am:
Makefiles should now be complete
* daemons/hw_default.c: forgot a FIXME ;-)
* daemons/hw_default.c, daemons/Makefile.am: small fixes
* daemons/lircmd.c: new directive: TOGGLE_ACTIVATE
* remotes/avermedia/lircd.conf.avermedia, remotes/avermedia/lircmd.conf.avermedia, remotes/life-view/lircd.conf.fly98, remotes/life-view/lircmd.conf.fly98:
adjusted config files to use new features
1999-08-03 jochym <jochym@k7>
* README, remotes/fly98/lircd.conf.fly98, remotes/fly98/lircmd.conf.fly98, remotes/fly98/lircrc.fly98, remotes/life-view/lircd.conf.fly98, remotes/life-view/lircmd.conf.fly98, remotes/life-view/lircrc.fly98:
Small additional rearangements
* drivers/lirc_fly98/README: *** empty log message ***
* drivers/lirc_fly98/ChangeLog, drivers/lirc_fly98/kbttv2210-gpiomon.diff, drivers/lirc_fly98/lirc_fly98.c, drivers/lirc_fly98/lirc_fly98.h, drivers/lirc_fly98/Makefile.am, drivers/lirc_fly98/README:
Changed Makefile.am to conform to the rest of the tree. Small modyfication
of kernel patch (tristate changed to bool in Config.in). Clean-ups.
No real bugs found so far. README modyfied to adapt to this changes.
Example configurations moved to live-view directory.
1999-08-02 Christoph Bartelmus <columbus@k7>
* daemons/config_file.c, daemons/hardware.h, daemons/hw_default.c, daemons/hw_default.h, daemons/hw_pixelview.c, daemons/hw_pixelview.h, daemons/ir_remote.c, daemons/ir_remote.h, daemons/lircd.c, daemons/lircd.h, daemons/serial.c, daemons/serial.h, drivers/Makefile.am, tools/Makefile.am, acconfig.h, configure.in, daemons/Makefile.am, setup.sh:
reorganisation of lircd's code
added support for Pixelview RemoteMaster
* drivers/lirc_haup/lirc_haup.c, drivers/lirc_haup/lirc_haup.h, drivers/lirc_haup/Makefile.am, remotes/hauppauge/lircmd.conf.hauppauge:
uploaded *working* Hauppauge driver
many thanks to Matti Airas for making it finally work
* drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am:
added config.h to dependencies
1999-08-02 jochym <jochym@k7>
* drivers/lirc_fly98/README: nstalation instructions added
* drivers/lirc_fly98/bttv063-gpiomon.diff, drivers/lirc_fly98/ChangeLog, drivers/lirc_fly98/lirc_fly98.c, drivers/lirc_fly98/lirc_fly98.h, drivers/lirc_fly98/README, README, remotes/fly98/lircd.conf.fly98, remotes/fly98/lircmd.conf.fly98, remotes/fly98/lircrc.fly98:
Finally a working setup. Further clean-up of the kernel patch (got it
even smaller). Configuration files for lircd, lircmd and ~/.lircrc.
Lock-up in the bttv caused by wrong initialization order removed.
External bttv patch not fully tested yet. Internal version 0.1. BETA.
1999-08-01 jochym <jochym@k7>
* drivers/lirc_fly98/kbttv2210-gpiomon.diff:
Even smaller patch. Only gpiomonitor function added. remote.c removed
from the kernel - all is handled by the lirc_fly98.o module.
Better integrated with menuconfig of the kernel.
Lockup fixed - better update your driver!
* drivers/lirc_fly98/ChangeLog: Change log file
1999-07-30 Christoph Bartelmus <columbus@k7>
* contrib/lirc.m4: m4 macros to check for LIRC support
* acinclude.m4, configure.in, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am:
further changes for kernel Makefile usage
1999-07-27 Christoph Bartelmus <columbus@k7>
* daemons/ir_remote.c:
bug-fix for LIRC_MODE_CODE and LIRC_MODE_LIRCCODE,
all buttons on Hauppauge remote control should work now
1999-07-27 jochym <jochym@k7>
* drivers/lirc_fly98/lirc_fly98.c:
Error code returned by read function changed from -EIO to -EFAULT
* drivers/lirc_fly98/Makefile.am:
Default location of the kernel sources changed to more standard dir.
1999-07-27 Christoph Bartelmus <columbus@k7>
* configure.in, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/lirc_serial.c, drivers/lirc_serial/Makefile.am:
drivers now use kernel Makefile to compile,
this fixes some long known problems
* acinclude.m4: additional m4 macros
1999-07-27 jochym <jochym@k7>
* drivers/lirc_fly98/bttv063-gpiomon-0.0.2.diff:
*** empty log message ***
* README: Note for FlyVideo98 added
* drivers/lirc_fly98/Makefile.am:
Errors corrected. Added location of the kernel source as a param.
* drivers/lirc_fly98/README: Small notes about configuration added
* drivers/lirc_fly98/lirc_fly98.c, drivers/lirc_fly98/lirc_fly98.h:
Minor cleanup of the driver. Poll function added. Bugfixes.
Supports patched kernel and external bttv drivers.
* drivers/lirc_fly98/bttv063-gpiomon.diff, drivers/lirc_fly98/kbttv2210-gpiomon.diff:
Patches for bttv-0.6.3 and kernel bttv 2.2.10.
They implement GPIO monitoring hook into the bttv driver.
Version 0.0.3
1999-07-26 jochym <jochym@k7>
* drivers/lirc_fly98/README: First README version - only short notice.
* drivers/lirc_fly98/bttv063-gpiomon-0.0.2.diff, drivers/lirc_fly98/lirc_fly98.h:
Patch for the bttv-0.6.3 driver to support GPIO monitoring by
external modules. Supports interupt driven reading (no polling).
Removed some traces of remote control driver dependence. Changed masks
of the interupt mask register. All keys on the remote are properly read
(even power key with id=0).
lirc_fly98.h - header file for the remote control driver.
* drivers/lirc_fly98/lirc_fly98.c:
New version of the driver. Cleaner interface to the bttv driver.
LIRC_MODE_CODE mode reading with blocking reads. IOCTRL interface
implemented. True interrupt driven readout in the bttv patch.
Multi-character reading commented out. Support for multiple cards.
1999-07-24 Christoph Bartelmus <columbus@k7>
* drivers/lirc_serial/lirc_serial.c:
fixes for 2.3.x kernels (thanks to Adam Fritzler for the patch),disabled interrupts during transmission
1999-07-23 jochym <jochym@k7>
* drivers/lirc_fly98/lirc_fly98.c:
Added author ID to the FlyVideo98 driver
1999-07-21 Christoph Bartelmus <columbus@k7>
* daemons/ir_remote.c, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_parallel/lirc_parallel.h, Makefile.am, NEWS:
several small changes
1999-07-08 Christoph Bartelmus <columbus@k7>
* Makefile.am: added setup.sh
added rcs2log call for 'make dist'
* daemons/ir_remote.c, daemons/Makefile.am: maintainer-mode fixes
* tools/irrecord.c: added debug code
* drivers/lirc_fly98/lirc_fly89.c, drivers/lirc_fly98/lirc_fly98.c:
renamed file
1999-06-29 nic <nic@k7>
* setup.sh: *** empty log message ***
1999-06-21 Christoph Bartelmus <columbus@k7>
* daemons/config_file.c, daemons/dump_config.c, daemons/ir_remote.c, daemons/ir_remote.h, daemons/lircd.h, tools/irrecord.c:
support for different modulation frequencies (currently transmission only)
* daemons/ir_remote.c, daemons/ir_remote.h, daemons/lircd.c:
send_command() returns errors
1999-06-19 Christoph Bartelmus <columbus@k7>
* NEWS, tools/lirc_client.c, tools/lirc_client.h:
added new feature to .lircrc config file
1999-06-14 denis <denis@k7>
* drivers/lirc_serial/Makefile.am, drivers/lirc_parallel/Makefile.am, drivers/lirc_haup/Makefile.am, drivers/lirc_fly98/Makefile.am:
module_SCRIPTS changed to module_DATA.
Run "depmod -a" after installation.
* contrib/conf.modules.aver:
/etc/conf.modules file for autoload lirc_aver driver.
* contrib/lirc.redhat: RedHat 5.x init script
* drivers/lirc_aver/lirc_aver.c: Changed indentation from 2 to 8 chars.
1999-06-11 Christoph Bartelmus <columbus@k7>
* tools/lirc_client.c: potential memory leak fixed
1999-06-08 denis <denis@k7>
* remotes/avermedia/lircd.conf.avermedia:
Support for new 8-bit LIRC_MODE_CODE mode added.
Repeat bit support added.
* drivers/lirc_aver/lirc_aver.c: Compilation with new lirc fixed.
New lirc ioctl interface added.
Main lirc config.h file added.
"major" module option added.
Repeat code with "repeat_bit" implemented.
* drivers/lirc_aver/Makefile.am:
Changed .o file representation from module_SCRIPTS to module_DATA
because of installed file permissions.
Added module dependencies generation (depmod -a) after intallation.
* configure.in: Added 'depmod' program search.
Fixed return value from ${withval} to ${enableval} after AC_ARG_ENABLE.
Commented out SHELL redefinition.
1999-05-28 Christoph Bartelmus <columbus@k7>
* daemons/lircd.c: lircd could be blocked by applications
1999-05-15 Christoph Bartelmus <columbus@k7>
* daemons/ir_remote.c, daemons/Makefile.am: added maintainer mode
1999-05-14 wheeley <wheeley@k7>
* drivers/irman/lirmand.c: hopefully fixed buggy daemonization
* drivers/Makefile.am: added lirc.h to distribution
* acconfig.h, configure.in, daemons/lircd.c, daemons/Makefile.am:
added maintainer mode
1999-05-10 Christoph Bartelmus <columbus@k7>
* drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c:
now works with 2.0.x kernels
1999-05-07 Christoph Bartelmus <columbus@k7>
* tools/Makefile.am, tools/mode2.c: added mode2, I need it
* tools/irrecord.c: added some debug code
1999-05-06 wheeley <wheeley@k7>
* drivers/irman/lirmand.c: incorporated signal patch from yoann
* autogen.sh: added to repository
1999-05-06 Christoph Bartelmus <columbus@k7>
* daemons/lircd.c, daemons/lircmd.c:
added config-file argument to daemons' command line
1999-05-05 Christoph Bartelmus <columbus@k7>
* daemons/ir_remote.c, daemons/ir_remote.h, daemons/lircd.c, daemons/lircd.h, drivers/lirc.h, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_serial/lirc_serial.c, tools/irrecord.c:
added new ioctl interface to lircd, lirc_parallel, lirc_serial
* drivers/lirc_aver/Makefile.am, drivers/lirc_fly98/Makefile.am, drivers/lirc_haup/Makefile.am, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/Makefile.am:
corrected mknod call
1999-05-04 wheeley <wheeley@k7>
* drivers/irman/lirmand.c: fixed signal problem in lirmand.c
1999-05-04 rggammon <rggammon@k7>
* AUTHORS, configure.in, daemons/ir_remote.c, daemons/lircd.c, drivers/lirc_aver/lirc_aver.c, drivers/lirc_aver/Makefile.am, drivers/lirc_fly98/lirc_fly89.c, drivers/lirc_fly98/Makefile.am, drivers/lirc.h, drivers/lirc_haup/lirc_haup.c, drivers/lirc_haup/Makefile.am, drivers/Makefile.am, lirc-bttv-2.2.7.patch.gz, remotes/avermedia/lircd.conf.avermedia, remotes/avermedia/lircmd.conf.avermedia, remotes/fly98/lircd.conf.fly98, remotes/fly98/lircmd.conf.fly98:
Added patches for Avermedia, Fly98, and Hauppague tv cards. These all need
various degrees of work. Also includes an experimental ioctl interface for
the avermedia driver.
1999-05-03 Christoph Bartelmus <columbus@k7>
* drivers/lirc_parallel/lirc_parallel.c:
fixed stupid bug that has overwritten the control register
1999-04-29 Christoph Bartelmus <columbus@k7>
* acconfig.h, ANNOUNCE, AUTHORS, ChangeLog, configure.in, contrib/irman2lirc, contrib/lircd.conf, contrib/lirc.debian, contrib/lircmd.conf, contrib/lircrc, contrib/lirc.suse, COPYING, daemons/config_file.c, daemons/config_file.h, daemons/dump_config.c, daemons/dump_config.h, daemons/ir_remote.c, daemons/ir_remote.h, daemons/lircd.c, daemons/lircd.h, daemons/lircmd.c, daemons/Makefile.am, drivers/irman/lirmand.c, drivers/irman/Makefile.am, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_parallel/lirc_parallel.h, drivers/lirc_parallel/Makefile.am, drivers/lirc_serial/lirc_serial.c, drivers/lirc_serial/Makefile.am, drivers/Makefile.am, Makefile.am, NEWS, remotes/animax/lircd.conf.animax, remotes/animax/lircmd.conf.animax, remotes/hauppauge/lircd.conf.hauppauge, remotes/life-view/lircd.conf.FlyVideo_II, remotes/packard_bell/lircd.conf.packard_bell, TODO, tools/irexec.c, tools/irpty.c, tools/irrecord.c, tools/irw.c, tools/irxevent.c, tools/lirc_client.c, tools/lirc_client.h, tools/Makefile.am, tools/smode2.c, tools/xmode2.c:
changed revision to reflect current lirc version
* tools/irrecord.c: Imported sources.
* tools/irrecord.c: New file.
* tools/irexec.c, tools/irpty.c, tools/irw.c, tools/lirc_client.c, tools/lirc_client.h:
Imported sources.
* tools/irexec.c, tools/irpty.c, tools/irw.c, tools/lirc_client.c, tools/lirc_client.h:
New file.
* tools/irxevent.c: Imported sources.
* tools/irxevent.c: New file.
* tools/xmode2.c: Imported sources.
* tools/xmode2.c: New file.
* tools/Makefile.am, tools/smode2.c: Imported sources.
* tools/Makefile.am, tools/smode2.c: New file.
* daemons/dump_config.c, daemons/dump_config.h: Imported sources.
* daemons/dump_config.c, daemons/dump_config.h: New file.
* daemons/lircmd.c: Imported sources.
* daemons/lircmd.c: New file.
* daemons/config_file.h: Imported sources.
* daemons/config_file.h: New file.
* daemons/config_file.c, daemons/ir_remote.h, daemons/lircd.h:
Imported sources.
* daemons/config_file.c, daemons/ir_remote.h, daemons/lircd.h:
New file.
* daemons/ir_remote.c: Imported sources.
* daemons/ir_remote.c: New file.
* daemons/lircd.c: Imported sources.
* daemons/lircd.c: New file.
* daemons/Makefile.am: Imported sources.
* daemons/Makefile.am: New file.
* drivers/irman/lirmand.c: Imported sources.
* drivers/irman/lirmand.c: New file.
* drivers/irman/Makefile.am, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_parallel/lirc_parallel.h:
Imported sources.
* drivers/irman/Makefile.am, drivers/lirc_parallel/lirc_parallel.c, drivers/lirc_parallel/lirc_parallel.h:
New file.
* drivers/lirc_parallel/Makefile.am: Imported sources.
* drivers/lirc_parallel/Makefile.am: New file.
* drivers/lirc_serial/lirc_serial.c: Imported sources.
* drivers/lirc_serial/lirc_serial.c: New file.
* contrib/lirc.debian, drivers/lirc_serial/Makefile.am, drivers/Makefile.am:
Imported sources.
* contrib/lirc.debian, drivers/lirc_serial/Makefile.am, drivers/Makefile.am:
New file.
* contrib/irman2lirc, contrib/lircd.conf, contrib/lircmd.conf, contrib/lircrc, contrib/lirc.suse, remotes/packard_bell/lircd.conf.packard_bell:
Imported sources.
* contrib/irman2lirc, contrib/lircd.conf, contrib/lircmd.conf, contrib/lircrc, contrib/lirc.suse, remotes/packard_bell/lircd.conf.packard_bell:
New file.
* remotes/animax/lircd.conf.animax, remotes/animax/lircmd.conf.animax, remotes/hauppauge/lircd.conf.hauppauge, remotes/life-view/lircd.conf.FlyVideo_II:
Imported sources.
* remotes/animax/lircd.conf.animax, remotes/animax/lircmd.conf.animax, remotes/hauppauge/lircd.conf.hauppauge, remotes/life-view/lircd.conf.FlyVideo_II:
New file.
* ANNOUNCE, ChangeLog, configure.in: Imported sources.
* ANNOUNCE, ChangeLog, configure.in: New file.
* acconfig.h, NEWS, TODO: Imported sources.
* acconfig.h, NEWS, TODO: New file.
* COPYING, Makefile.am: Imported sources.
* COPYING, Makefile.am: New file.
* AUTHORS: Imported sources.
* AUTHORS: New file.
|