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
|
--- Release 2.1.7 ----
2024-05-03 Guido Scholz <gscholz@users.sourceforge.net>
* NEWS: Lists all important changes, see svn log for more.
--- Release 2.1.6 ----
2023-03-05 Guido Scholz <gscholz@users.sourceforge.net>
* NEWS: Lists all important changes, see svn log for more.
--- Release 2.1.5 ----
2020-05-06 Guido Scholz <gscholz@users.sourceforge.net>
* NEWS: Lists all important changes, see svn log for more.
--- Release 2.1.4 ----
2020-05-03 Guido Scholz <gscholz@users.sourceforge.net>
* NEWS: Lists all important changes, see svn log for more.
--- Release 2.1.3 ----
2015-04-23 Guido Scholz <gscholz@users.sourceforge.net>
* src/srcp-command.c: Fix potential buffer overflow.
* configure.in: Rename to configure.ac.
2014-02-20 Guido Scholz <gscholz@users.sourceforge.net>
* src/srcp-command.c, src/srcp-ga.c: Fix needless INFO LOCK
message on TERM GA.
* src/srcp-gA.c: Fix missing 102 INFO message for TERM GA.
* configure.ac: Do not check for i2c header files if i2c module
is not used.
2014-02-18 Guido Scholz <gscholz@users.sourceforge.net>
* src/li100.c: Fix broken first serial line read.
* src/ddl_nmra.c: Enable operations mode programming in ddl
mode, patch provided by Dirk Holzenburg
2014-02-17 André Schenk <andre_schenk@users.sourceforge.net>
* src/ib.c: send extended information (BiDi) in FB INFO
2014-01-31 Guido Scholz <gscholz@users.sourceforge.net>
* src/srcp-command.c, src/srcp-gl.c: Fix needless INFO LOCK
message on TERM GL.
* src/srcp-gl.c: Fix missing 102 INFO message for TERM GL.
2014-01-21 Guido Scholz <gscholz@users.sourceforge.net>
* src/syslogmessage.c: Fix syslog message buffer overflow.
2014-01-18 Guido Scholz <gscholz@users.sourceforge.net>
* src/srcp-ga.c: Fix GA unlock. Patch provided by Lothar Roth.
* src/clientservice.c: Fix incomplete handshake. Patch provided
by Lothar Roth.
2013-05-26 André Schenk <andre_schenk@users.sourceforge.net>
* src/ib.*: added POM read for locomotives
2013-01-27 Achim Marikar <amarikar@users.sourceforge.net>
* src/dccar.*: Add support for dc-car sender (serial pc-device)
--- Release 2.1.2 ----
2012-10-30 Matthias Trute <mtrute@web.de>
* src/io.c: ioctl returns less bits of useful data than
an integer may hold. Make sure, every bit is initialized properly.
* src/m6051.c: remove duplicate checks for reading feedback modules.
2012-10-28 Matthias Trute <mtrute@web.de>
* src/m6051.c: correct the GA protocol checks for INIT.
2012-10-28 Guido Scholz <guido.scholz@bayernline.de>
* src/ib.c: Rewrite firmware version report to show results in
readable manner. Add options to handle a 57600 baud rate.
* man/srcpd.8, man/srcpd.conf.5: Add information about syslog
file /var/log/syslog as an alternative for /var/log/messages.
2012-10-27 Guido Scholz <guido.scholz@bayernline.de>
* src/loconet.c: Improve getaddrinfo() usage to loop over every
returned network address.
* src/ib.c: Resort code to make forward declarations obsolete.
Rename function reading P50 command responses. Rename function to
enable/disable P50X mode.
* src/ib.c, src/io.*: Replace int by bool parameter.
2012-03-26 André Schenk <andre_schenk@users.sourceforge.net>
* src/ib.c: Fix usage of XEvtLok
2011-10-06 André Schenk <andre_schenk@users.sourceforge.net>
* src/srcp-ga.c, src/srcp-ga.h, src/srcp-command.c: Add missing
TERM GA function
2010-12-01 Guido Scholz <guido.scholz@bayernline.de>
* src/li100.c: Fix GA feedback address nibble mask
2010-03-16 Guido Scholz <guido.scholz@bayernline.de>
* srcp-gl.c: Clean up GL address validity check. Patch
provided by Harald Barth.
--- Release 2.1.1 ----
2010-03-04 Guido Scholz <guido.scholz@bayernline.de>
* srcp-fb.*, srcp-info.c, srcp-command.c: Fixed undelivered
INFO messages caused by sizeof(msg).
2010-03-03 Guido Scholz <guido.scholz@bayernline.de>
* i2c-dev.*: Fixed opensuse compile error, unused function
parameters removed
2010-03-01 Guido Scholz <guido.scholz@bayernline.de>
* loconet.c: Fixed Loconet module init routine.
--- Release 2.1.0 ----
2010-02-21 Guido Scholz <guido.scholz@bayernline.de>
* ddl-s88.*: FreeBSD compile errors fixed.
2010-01-09 Guido Scholz <guido.scholz@bayernline.de>
* ddl.c, srcpd.conf.5: Default value for usleep_patch in DDL
module set to "yes".
2009-12-27 Matthias Trute <mtrute@users.sourceforge.net>
* src/loconet.[ch]: use an input buffer to accumulate serial
characters until a complete loconet packet is received.
2009-12-20 Matthias Trute <mtrute@users.sourceforge.net>
* src/loconet.c: renamed setting names: loconetID -> loconet-id
and getTIME to sync-time-from-loconet, activated DESCRIOPTION
2009-12-19 Guido Scholz <guido.scholz@bayernline.de>
* man/*: Content of English and German manual pages aligned.
* srcpd.conf.5, de/srcpd.conf.5: Example bus sections for ddl,
ddl-s88, hsi-88, intellibox, loconet (very bare), loopback and
m605x added.
2009-08-21 Matthias Trute <mtrute@users.sourceforge.net>
* src/Makefile.am src/toolbox.c src/toolbox.h src/ib.c
src/li100-main.c src/loopback.c: new module toolbox, contains
the cmpTime function found in multiple driver files.
2009-08-17 Guido Scholz <guido.scholz@bayernline.de>
* configure.in: Let the configure script show a short summary
about which modules are in and out, only check for ioperm() if
ddl-s88 module is used, use AC_HELP_STING to format "configure
--help" messages
2009-08-18 Matthias Trute <mtrute@users.sourceforge.net>
* src/loopback.c src/li100.c: copy the cmdTime() from
ib.c, only a temporary solution to avoid compilation errors
when disabling the ib module.
* configure.in src/Makefile.am config-srcpd.c config-srcpd.h:
option to disable all modules except loopback
2009-08-17 Guido Scholz <guido.scholz@bayernline.de>
* config-srcpd.c: Create error message if unvalid verbosity
value is detected. Reset wrong value to maximum limit.
* configure.in, src/Makefile.am, config-srcpd.c: Configure
option to disable loconet module added
2009-06-28 Matthias Trute <mtrute@users.sourceforge.net>
* README.loconet: New document that describes some
loconet specific stuff.
2009-06-28 Matthias Trute <mtrute@users.sourceforge.net>
* loconet.c: improved loconet communication, internal code
cleanups
2009-06-24 Guido Scholz <guido.scholz@bayernline.de>
* clientservice.c, srcp-server.h, srcpd.c: Improved server
message string handling.
* srcpd.c: Report error, if chdir() fails.
2009-06-21 Guido Scholz <guido.scholz@bayernline.de>
* config-srcpd.*, io.*: Removed sys/param.h dependency. Fixed
compiler warning.
2009-01-31 Guido Scholz <guido.scholz@bayernline.de>
* zimo.c: Support for GA switching added. Thread event loop
design cleaned up. New Copyright/License header according to GPL
rules (http://www.fsf.org/licensing/licenses/gpl-howto.html).
* dcc-address.*: Basic functions to map address/port values
between NMRA and Lenz-DCC address scheme added.
* ddl.c, ddl-s88.c, hsi-88.c, i2c-dev.c, ib.c, li100.c,
loconet.c, loopback.c, m605x.c, selectrix.c, zimo.c,
config-srcpd.c: Harmonized usage of "comment" tag.
2009-01-26 Guido Scholz <guido.scholz@bayernline.de>
* loopback.c: Cleaner design for bus thread event loop applied.
2009-01-24 Guido Scholz <guido.scholz@bayernline.de>
* config-srcpd.*, ib.*, io.*, zimo.c: Support for circumvention
of Intellibox BIBA function added to to speed up connection
initialization if user configures the proper baudrate in
srcpd.conf.
* ib.c: Very basic support added to print firmware version to
syslog.
2009-01-21 Guido Scholz <guido.scholz@bayernline.de>
* config-srcpd.c: Fixed counting of interface bus number,
reported by Heiko Gau.
* ddl.c, ddl_maerklin.c, ddl_nmra.c, ddl-s88.c, hsi-88.c,
i2c-dev.c, ib.c, li100.c, loconet.c, loopback.c, m605x.c,
selectrix.c, srcp-command.c, srcpd.c, srcp-fb.c, srcp-time.c,
zimo.c: Unhide all usleep() system error messages.
2009-01-19 Guido Scholz <guido.scholz@bayernline.de>
* hsi-88.c, ib.c, ddl-s88.c, li100.c, srcpd.c: All sleep()
interruptions made visible as error level syslog messages.
2009-01-18 Guido Scholz <guido.scholz@bayernline.de>
* srcp-time.*, srcp-command.c: Fixed locking of time variable(s),
suspend time thread if not used.
2009-01-17 Matthias Trute <mtrute@users.sourceforge.net>
* loconet.*: Support for GA and FB devices, communication
can be routed via a loconetovertcp server (e.g. JMRI or
lbserver)
2009-01-17 Guido Scholz <guido.scholz@bayernline.de>
* srcp-time.*, srcp-command.c: Support for TERM 0 TIME added.
2009-01-13 Guido Scholz <guido.scholz@bayernline.de>
* srcpd.c, srcp-server.*: Handling of server state variable
cleaned up.
2009-01-12 Guido Scholz <guido.scholz@bayernline.de>
* ddl-s88.c: Fixed init of s88 buses number 2, 3 and 4.
2008-12-29 Joerg Rottland <rottland@users.sourceforge.net>
* ddl.c: Fixes from Torsten Vogt for simultaneous use of DCC and MM
Configurable GA Adress shift (for backward compability)
--- Release 2.0.12 ----
2008-11-14 Guido Scholz <guido.scholz@bayernline.de>
* configure.in, i2c-dev.c: Kernel version independend i2c header
integration.
2008-08-22 Guido Scholz <guido.scholz@bayernline.de>
* srcpd.c: Open syslog after daemonization to fix missing
logging under Cygwin.
2008-08-17 Guido Scholz <guido.scholz@bayernline.de>
* loconet.c: Fixed address shift for INFO GA, reported by David
Rütti.
2008-03-27 Guido Scholz <guido.scholz@bayernline.de>
* srcp-gm.c: Fixed session id check for GM delivery.
* srcp-command.c, clientservice.c: Terminating line break of
incoming socket strings removed.
* srcp-session.h: Session mode variable changed to enum type.
2008-03-04 Guido Scholz <guido.scholz@bayernline.de>
* io.c, li100.c, loconet.c, m605x.c, portio.c, srcp-server.c,
ttycygwin.*, zimo.c: Fixed some Cygwin compile issues.
2008-03-03 Guido Scholz <guido.scholz@bayernline.de>
* srcp-info.c: Fixed loss of info messages if they are send
close one after another.
2008-01-29 Guido Scholz <guido.scholz@bayernline.de>
* configure.in: Fixed override of user defined CFLAGS variable.
2008-01-28 Guido Scholz <guido.scholz@bayernline.de>
* man/srcpd.8, man/srcpd.conf.5: Fixed non ASCII characters.
--- Release 2.0.11 ----
2008-01-26 Jörg Rottland <rottland@users.sourceforge.net>
* ddl.c, ddl_nmra.c: Support for PAGE mode,
fix for functions F21-F28
2008-01-25 Guido Scholz <guido.scholz@bayernline.de>
* ddl.c: Fixed system freeze on Linux 2.4 kernels using
ddl-module.
2008-01-19 Jörg Rottland <rottland@users.sourceforge.net>
* ddl.c: Re-activated improved timing,
additional config parameter to allow filtering of SM commands
2008-01-13 Jörg Rottland <rottland@users.sourceforge.net>
* srcp-command.c: Support for GL functions up to F28 added.
2008-01-12 Jörg Rottland <rottland@users.sourceforge.net>
* loopback.c: Support for VERIFY <bus> SM added.
* ddl.*, ddl_nmra.*, srcp-sm.c: Implemented ddl_nmra support for
srcp 0.8.x (only GL and SM parts have been adapted).
Re-activated decoder programming; re-activated decoder support
for protocol type 2 and for more than 28 speed steps. Support
for more controller functions added (up to 28, tested only from
F0 to F12). Support for Operations Mode Programming (programming
on main, POM) added.
2008-01-12 André Schenk <andre@melior.s.bawue.de>
* ib.*: P50X command set completed.
2008-01-11 Jörg Rottland <rottland@users.sourceforge.net>
* srcp-command.c, srcp-sm.c: Support for VERIFY <bus> SM added,
stricter SM parameter control.
2008-01-10 Jörg Rottland <rottland@users.sourceforge.net>
* srcp-gl.c: Fixed missing attributes of enqueued GLs.
2008-01-07 Guido Scholz <guido.scholz@bayernline.de>
* srcp-power.*, srcp-command.c: Support for TERM <bus> POWER
added.
2008-01-06 Guido Scholz <guido.scholz@bayernline.de>
* srcp-command.c: Support for INIT <bus> POWER added.
2008-01-04 Guido Scholz <guido.scholz@bayernline.de>
* srcp-error.*, srcp-command.c: »Out of resources« error message
added.
2008-01-03 Guido Scholz <guido.scholz@bayernline.de>
* srcp-session.*, srcp-info.*: Queueing info messages is done
using pipes, information client initiated connection termination
is detected timely.
2008-01-03 André Schenk <andre@melior.s.bawue.de>
* loopback.c: Service Mode (SM) for loopback bus added.
2008-01-02 André Schenk <andre@melior.s.bawue.de>
* srcp-sm.c: Fixed time format for SM messages.
2008-01-02 Guido Scholz <guido.scholz@bayernline.de>
* README.ibox: Outdated file removed.
2007-12-25 Guido Scholz <guido.scholz@bayernline.de>
* stdincludes.h, *.c: Obsolete stdincludes.h file removed.
* io.c, srcp-command.c, clientservice.c, loconet.c: Handle
writing to socket more savely, also respecting client terminated
connections.
2007-12-24 Guido Scholz <guido.scholz@bayernline.de>
* io.*, srcp-info.c, srcp-command.c, loconet.c, clientservice.c:
Substituted old code to write to a socket descriptor by a faster
and interrupt save version.
2007-12-23 Guido Scholz <guido.scholz@bayernline.de>
* dll.c, dll-s88.c, hsi-s88.c, i2c-dev.c, ib.c, li100.c,
loconet.c, loopback.c, m605x.c, selectrix.c, zimo.c: Prevent bus
threads from eating mutexes and condition variables. Re-reading
the config file now should be possible without wasting system
resources.
2007-12-21 Guido Scholz <guido.scholz@bayernline.de>
* configure.in, acinclude.m4 src/Makefile.am: Updated libxml2
detection macro, now using CPPFLAGS.
* clientservice.c, netservice.c, queue.*, srcp-gm.c,
srcp-info.*, srcp-session.*: Individual queues for sessions to
get generic messages (GM) deliverable to certain info sessions.
2007-12-19 Guido Scholz <guido.scholz@bayernline.de>
* configure.in, acinclude.m4 src/Makefile.am, systemtest: Threads
library detection macro added, obsolete systemtest file removed.
2007-11-24 Matthias Trute <mtrute@users.sourceforge.net>
* imported most of the historical code from cvs to svn repository.
2007-11-20 Guido Scholz <guido.scholz@bayernline.de>
* srcp-ga.c: fixed wrong milli-second format for INFO GA (was
e.g. »x.6« instead of »x.006«)
2007-11-20 Matthias Trute <mtrute@users.sf.net>
* renamed getGL/setGL to cacheGetGL/cacheSetGL
2007-11-19 Frank Schmischke <frank.schmischke@t-online.de>
* config-srcp.c: add 115200 as value for speed for LI101F (Lenz)
* srcpd.conf.5: add sections for general, Lenz, Intellibox and HSI-88
* li100.c,ib.c,hsi88.c: change »p_time« to »fb_delay_time_0«
2007-11-19 Guido Scholz <guido.scholz@bayernline.de>
* netserver.c: fixed not closed info socket; prevents srcpd from
eating socket resources
* ib.c: fixed not closed file descriptor of serial device;
prevents ib module from eating file descriptors
2007-10-28 Guido Scholz <guido.scholz@bayernline.de>
* srcpd.c: fixed daemonization, process now is detached from
controlling terminal properly
* Changelog: reformated
2007-08-18 Guido Scholz <guido.scholz@bayernline.de>
* config-srcp.c: disabled writing to 'stderr' during normal
operation, this fixes broken debian package updates and srcpd
misbehavior in SuSEs runlevel editor
2007-05-23 Guido Scholz <guido.scholz@bayernline.de>
* srcp-ga.c: fixed microsecond value for GA initialization
2007-01-25 Matthias Trute <mtrute@users.sf.net>
* ddl.c: fixed »switch power on« bug for DDL module
2006-02-08 Guido Scholz <guido.scholz@bayernline.de>
* srcp-power.c: added info message for power change
2006-01-25 Matthias Trute <mtrute@users.sf.net>
* loconet: added MS100 code,
basic GA Support for LocoIO
2006-01-05 Matthias Trute <mtrute@users.sf.net>
* loconet.*: Feedback Sensors and basic loconet communication via
loconbuffer implemented
* srcp-session.* and srcp-sm.*: Support for SM GET/SET (still not
working)
2006-01-03 Frank Schmischke <frank.schmischke@t-online.de>
* *.h *.c: change busnumber from int to long int for x86_64
2005-10-14 Guido Scholz <guido.scholz@bayernline.de>
* *.c: some non-ASCII strings fixed
2005-10-11 Guido Scholz <guido.scholz@bayernline.de>
* configure.in, Makefile.am, src/Makefile.am: adaptations to new
src directory
2005-10-07 Guido Scholz <guido.scholz@bayernline.de>
* debian: debian control files added
2005-08-20 Matthias Trute <mtrute@users.sf.net>
* DDL code did not compile (syntax error with gcc 3.3.5)
* default values for all busses with busnumber > 0 defined.
2005-07-11 Guido Scholz <guido.scholz@bayernline.de>
* configure.in, ttycygwin.c ttycygwin.h, ddl-s88.c, ib.c,
selectix.c, m605x.c: cygwin support added
2005-06-05 Matthias Trute <mtrute@users.sf.net>
* removed ibox kernel module
* integrated (only) zimo GL patches from Johann
Vieselthaler, dropped GA Support
* re-set default runtime config to loopback bus
* prepared release 2.0.8.
* minor cleanups (^M removed)
2005-05-16 Frank Schmischke <frank.schmischke@t-online.de>
* li100: various improvements
2005-04-08 Frank Schmischke <frank.schmischke@t-online.de>
* li100: sendGL; sendGA.. for Lenz
2005-03-28 Frank Schmischke <frank.schmischke@t-online.de>
* hsi-88: improve detect interface on usb-seriell-adapter
* li100: check version of LZ100 send GL for version >= 3.00
2005-03-14 Manuel Borchers <manuel@matronix.de>
* i2c-dev: major modifications of writting to i2c-devices
by Ulrich Eckhardt <uli.e@gmx.de>;
better initialisation and better power handling
2005-01-09 Matthias Trute <mtrute@users.sourceforge.net>
* corrected some misplaced config.h occurancies.
2005-01-08 Matthias Trute <mtrute@users.sourceforge.net>
* XML configuration ignores property number for definition of
busses. They are simply numbered as they appear in the configuration.
The API for the register_bus_XX functions has changed to reflect this.
* DDL changes (mostly untested but should work)
- short detection
- automatic deactivation of GA after specified delay
- emergency stop for GL (M protocols)
2005-01-02 Frank Schmischke <frank.schmischke@t-online.de>
* ib.c: use of watchdog added
* Makefile.am: remove all references to no longer needed
ibox-kernel-modul
2004-11-04 Matthias Trute <mtrute@users.sourceforge.net>
* varios files : reinit made possible, loopback and 605x
with stricter value check on allowed init parameters.
* Makefile.am, srcpd.c: SYSCONFDIR as suggested by Guido Scholz
2004-11-03 Matthias Trute <mtrute@users.sourceforge.net>
* varios files : made some regression tests. Improved error handling.
2004-07-20 Frank Schmischke <frank.schmischke@t-online.de>
* ib.c : correct logic for emergency-stop and pressing
"POWER ON"-Button at IB
2004-06-13 Frank Schmischke <frank.schmischke@t-online.de>
* hsi-88.c: change position for calling check_reset_fb() to solve
some problems
2004-05-28 Frank Schmischke <frank.schmischke@t-online.de>
* ib.c: process return of power on IB
* ib.*, hsi-88.*, li100.*: make some function-names more standards-like
* li100.*, config-srcpd.*: initialisation of LI100
2004-05-23 18:54 mborchers
* ib.c: function changes sent by the iB are now correctly set in
the GLSTATE struct (and correctly displayed by clients of course)
2004-05-15 22:06 mtrute
* ddl.c, ddl_maerklin.c, srcp-gl.c: do not mix marklin and dcc
signals, minor typos
2004-04-09 16:36 mtrute
* config-srcpd.h, netserver.c: Minor cleanup, Busses may use there
busnumber as a SRCP sessionid, e.g. for locking
2004-03-12 15:04 schmischi
* ChangeLog, acinclude.m4, config-srcpd.h, config.h.in,
configure.in, ib.h, io.c, netserver.c: some cleanup's
2004-03-12 15:01 schmischi
* ddl-s88.c, hsi-88.c, ib.c, m605x.c, srcp-fb.c, zimo.c: correct
logic for reset feedbacks when delay is set
2004-02-03 01:35 schmischi
* netserver.c: [no log message]
2004-02-03 01:34 schmischi
* ib.c: improve SM-mode
2004-02-03 01:20 schmischi
* ib.h: some definitions
2004-02-03 01:18 schmischi
* srcp-fb.c: update reset of GA
2004-02-03 01:08 schmischi
* srcp-sm.c, srcp-sm.h: add TERM for SM
2004-02-03 01:06 schmischi
* srcp-power.c: in setPower remove state -1
2004-02-03 01:04 schmischi
* srcp-gl.c: more logic for calculate speed
2004-02-03 00:55 schmischi
* Makefile.am: [no log message]
2004-02-03 00:47 schmischi
* io.c: [no log message]
2004-02-03 00:40 schmischi
* config-srcpd.h: change comment
2004-01-24 17:50 mtrute
* srcp-gl.c, srcp-ga.c: if command queues are full, dont wait
anymore but report a SRCP error 413 back to the client; Thanks to
Eckhart W�ner for reporting the bug
2004-01-17 18:08 mtrute
* ddl.c: Functions did not work...
2004-01-17 17:06 mtrute
* config-srcpd.h, ddl.c, ddl_maerklin.c, ddl_maerklin.h,
ddl_nmra.c, ib.c, loopback.c, srcp-ga.c, srcp-gl.c, srcp-gl.h,
srcp-time.h: Cleanups, GA/GL init functions can abort SRCP init
2004-01-17 17:05 mtrute
* m605x.c, m605x.h: 6020 Mode did not work
2004-01-14 18:08 mtrute
* ChangeLog, NEWS, PROGRAMMING-HOWTO, README, ddl.c: added
configuration parameters. Disabled SM Devices (for now)
2004-01-13 20:03 mtrute
* Makefile.am, Makefile.in, README, config-srcpd.c, ddl.c, ddl.h,
ddl_maerklin.c, ddl_maerklin.h, ddl_nmra.c, ddl_nmra.h, srcp-ga.c,
srcp-gl.c: Minor cleanups, added DDL Code for direct signal
generation via RS232
2003-11-18 17:26 mtrute
* srcpd.c: reordering of init...
2003-11-16 12:00 mtrute
* srcp-gl.c, srcp-gl.h, srcp-info.c: More error checking for GL
input, please read diff
2003-11-16 11:59 mtrute
* srcp-ga.c: fixed DBG Message
2003-11-16 11:58 mtrute
* netserver.c: fixed format error
2003-11-16 11:19 mtrute
* README, config-srcpd.c, ddl-s88.c, hsi-88.c, ib.c, m605x.c,
srcp-fb.c, srcp-fb.h, srcpd.c, zimo.c: Moved p_time parameter to
busses with FB devices, minor docu updates.
2003-11-08 20:57 mborchers
* i2c-dev.c: added #define in case I2C_SLAVE is not defined (cause
of this problem not yet located, temporary work-around)
2003-11-07 20:37 sieloff
* ib.c: Most writeByte calls with waiting time=0; readByte_ib
instead of readByte; Error during checking S88(wrong S88 module)
fixed.
2003-11-05 14:24 mtrute
* ChangeLog: Updated Changelog
2003-11-02 19:40 mborchers
* ib.c: major fix in init-procedure
2003-11-02 15:59 sieloff
* srcpd.c: readConfig must be called after startup* in current
configuration
2003-10-22 18:07 mtrute
* ChangeLog, Makefile.in, README, srcp-ga.c, srcp-session.c,
srcp-srv.c, srcpd.c: minor cleanups.
2003-10-22 18:06 mtrute
* ib.c, ib.h: moved some static data to bus-structure...
2003-10-22 18:01 mtrute
* config-srcpd.h: removed unused variables
2003-10-22 17:57 mtrute
* srcpd.8: man page with less confusion
2003-10-22 17:56 mtrute
* srcpd.lsm, srcpd.spec: release updates
2003-10-17 14:07 mborchers
* README.ibox, ibox/README: updated documentation for 'dead' ibox
kernel module
2003-10-17 13:55 mborchers
* config-srcpd.c: resolved conflicting types of readConfig
2003-10-17 13:55 mborchers
* ib.c: commented out all code of old ibox kernel-module init
2003-10-12 16:17 mtrute
* io.c: check all writes...
2003-10-11 11:36 mtrute
* ChangeLog, config-srcpd.h, io.c, netserver.c, srcpd.c: Code
cleanups, replies splitted by backslashed if too long (none
currently, but required by srcp)
2003-10-09 19:41 mtrute
* srcpd.c: bugfixing bugfix, now it really works...
2003-10-09 18:51 mtrute
* srcpd.c: Security fixes, part2
2003-10-09 18:26 mtrute
* ChangeLog, README, netserver.c, srcp-fb.c, srcp-ga.c: Security
fixes part1, some exploits were discovered...
2003-10-04 19:58 mtrute
* ChangeLog, README, config-srcpd.h, ib.c, ib.h, loopback.c,
loopback.h, m605x.c, m605x.h, netserver.c, srcp-ga.c, srcp-ga.h,
srcp-gl.c, threads.c: GA States, Dokuupdates und 605x Erweiterungen
2003-09-21 18:45 mtrute
* srcp-gl.c: nicht immer den Modulinit aufrufen, nur bei wirklichen
neu-inits
2003-09-21 18:08 mborchers
* ib.c: changes to get ib.c to compile on FBSD.
2003-09-21 17:20 mtrute
* config-srcpd.h, ib.c, ib.h, m605x.c, m605x.h, srcp-gl.c: Nur das
Hardwaremodul selbst hat die Kenntnis ueber die (technischen)
Defaultwerte der Geraete; insb. das Maerklin 6051 ist da anders als
das SRCP ;=)
2003-09-21 12:37 mborchers
* ib.c: changes to get ib.c to compile on FBSD again
2003-09-21 10:15 mtrute
* netserver.c, srcp-gl.c, srcp-gl.h: API CHange: queueGL with
bitmap for function, no more variable parameter list; TERM GL
introduced, real live state for a GL device
2003-09-20 10:03 mtrute
* srcpd.c: remaining 8255 deleted..
2003-09-20 09:31 mtrute
* Makefile.am: remaining 8255 deleted..
2003-09-19 21:30 mtrute
* srcp-fb-i8255.c, srcp-fb-i8255.h: removed 8255 supprt, nobody
uses it :=(
2003-09-19 21:24 mtrute
* ChangeLog, io.c, netserver.c, srcp-fb.c, srcp-info.c,
srcp-time.c, srcpd.kdevprj: major network code clean up; CHECK
Command activated
2003-09-19 21:20 mtrute
* m605x.c: Nur 4 Funktionen an das M�klin 605x senden
2003-09-19 13:26 mtrute
* srcp-ga.c, srcp-info.c: GA Ports ohne Aktivierung werden nicht
mehr gemeldet
2003-09-16 21:25 mborchers
* ib.c: Nearly completet rework of the IB init. Many thanks go to
Franz Sieloff for his improvements!
The changes: - BREAK is now sent without the ibox kernel-module -
Baudrate is now auto-detected, to match what has been chosen in
the IB
2003-09-13 16:22 mtrute
* ChangeLog, Makefile.in, config.h.in, configure.in, threads.c:
IPv6 Support, listen-ip feature disabled for now...
2003-09-13 00:40 mborchers
* ib.c: improved speed-handling for GL
2003-09-10 13:30 mborchers
* ib.c: some changes to correctly send speeds to the IB,
independent of speed-levels chosen by the user (with INIT x GL).
changed some debugging messages
2003-09-08 02:17 mborchers
* i2c-dev.c: removed some old unused stuff
2003-09-08 02:15 mborchers
* netserver.c: added right return code for missing gl parameters
2003-08-27 16:40 mtrute
* ChangeLog, srcpd.spec: Beta4 vorbereitet
2003-08-27 16:37 mtrute
* ib.c: mea culpa
2003-08-16 13:24 sieloff
* srcp-srv.c: Wrong parameterlist inside DBG call provides compiler
warning, fixed.
2003-08-14 18:11 mborchers
* io.c: fixed error-message handling in readByte() (crashed the
server before, if error occured)
2003-08-14 13:52 mborchers
* i2c-dev.c: fixed i2c-address and value calculations
2003-08-12 20:03 mborchers
* srcp-ga.c: forgot to remove a debugging statement
2003-08-12 19:12 mborchers
* srcp-ga.c: corrected init of GA devices: now allocates enough
space for GA's (addresses start with 1, not with 0!)
2003-08-12 15:50 mborchers
* i2c-dev.c, i2c-dev.h: changes for new hardware components
2003-08-12 15:19 mtrute
* ChangeLog, ib.c, m605x.c, srcp-gl.c, srcp-gl.h, zimo.c: Changed
internal data structure and API to support variable number of loco
functions without strange bitlevel hacks; only m605x tested, others
may work or not.
2003-08-12 13:25 mtrute
* ChangeLog, i2c-dev.c, ib.c, loopback.c, m605x.c, netserver.c,
zimo.c: DESCRIPTION fixed
2003-08-07 11:25 mborchers
* i2c-dev.c: [no log message]
2003-08-07 11:21 mborchers
* i2c-dev.h: small cleanup
2003-08-07 11:11 mborchers
* i2c-dev.c: first changes to support new hardware modules
2003-08-07 10:58 mborchers
* i2c-dev.h: first changes for new hardware
2003-07-19 17:48 mtrute
* srcp-srv.c, srcp-srv.h, threads.c: Added listenip config
parameter to specify IP adress the server listenes on
2003-06-03 13:58 mborchers
* i2c-dev.c: catch port and value settings above 1 for SET GA
2003-06-01 21:26 schmischi
* hsi-88.c, ib.c, ib.h, io.c, srcp-ga.c, srcpd.kdevprj: [no log
message]
2003-05-24 17:53 schmischi
* .cvsignore: [no log message]
2003-05-24 17:48 schmischi
* aclocal.m4, config-srcpd.h, config.h.in, configure, hsi-88.c,
ib.c, io.c, srcp-fb.c, srcp-ga.h, srcp-power.c, srcpd.kdevprj: show
emergency-states of IB
2003-05-18 19:35 schmischi
* ib.c, ib.h, srcp-info.c, srcp-info.h: send changes in power-state
to clients
2003-05-18 19:33 schmischi
* hsi-88.c: remove POWER from description
2003-04-25 16:01 mtrute
* m605x.c: Wrong initialization with newer linux Kernel (2.4.x)
2003-04-25 16:01 mtrute
* io.c: Minor Bugfixes
2003-04-15 17:37 mtrute
* Makefile.in: more convenient for hackes..
2003-04-15 17:35 mtrute
* ChangeLog, Makefile.am, aclocal.m4, config-srcpd.h, config.h.in,
configure, zimo.c, zimo.h: added driver for zimo mx1, only POWER
and some of the GL implemented, more to come...
2003-04-15 17:32 mtrute
* rcsrcpd: newer SuSEn without /etc/rc.config
2003-04-15 17:31 mtrute
* srcp-srv.c, config-srcpd.c, srcp-descr.c, srcp-gl.h, hsi-88.c,
ib.c, srcp-ga.h, i2c-dev.c, m605x.c, netserver.c, srcp-gl.c,
srcp-ga.c, io.c, io.h: API Umbauten
2003-02-26 09:10 mamba123
* netserver.c:
bei eingabe eines unbekannten befehls kam keine fehlermeldung. nun
wird "ERROR unkown command" ausgegeben.
2003-02-22 16:06 mtrute
* AUTHORS, ChangeLog: added Franz
2003-02-15 22:49 mtrute
* netserver.c, srcp-srv.c, srcp-srv.h: GET 0 SERVER
2003-02-15 21:05 mtrute
* ChangeLog: cvs log in Changelog umgewandelt
2003-02-15 21:02 mtrute
* netserver.c: WAIT TIME und FB repariert (haben z.T. noch nie
funktioniert..
2003-02-15 14:02 mtrute
* NEWS: News and Changelog should be used properly
2003-02-15 14:01 mtrute
* io.c, io.h, netserver.c, netserver.h, srcp-info.c: moved code for
socket communication
2003-02-15 14:00 mtrute
* srcpd.c: help prints really used default config file from
autoconf
2003-02-08 18:03 mtrute
* srcp-info.c: added doku, fixed race condition
2003-02-07 19:42 mtrute
* netserver.c, srcp-ga.c, srcp-ga.h, srcp-gl.c, srcp-gl.h,
srcp-info.c, srcpd.c: Locks mit Zeitsperre
2003-02-06 20:02 mtrute
* ChangeLog, config-srcpd.c: minor fixes for release
2003-02-06 20:01 mtrute
* srcp-info.c: dynmische Strings anstelle fixer Buffer
2003-02-05 20:52 mtrute
* srcp-time.c: IIME Modul aktiviert
2003-02-04 18:40 mtrute
* srcp-ga.c, srcp-gl.c: Defaultinitialisierung bei GA und GL
verbessert
2003-02-04 18:39 mtrute
* m605x.c: Erweiterte Funktionen versehentlich (wieder)
abgeschaltet
2003-02-03 20:34 mtrute
* netserver.c, srcp-ga.c: INIT GA eingebaut, war teilweise auch
noch buggy
2003-02-02 19:40 mtrute
* loopback.c: Korrektur der Korrektur
2003-02-01 22:06 mborchers
* i2c-dev.c: some small code-optimizations
2003-01-29 21:36 mtrute
* srcp-gl.c: Init GL macht mehr als nur zwei Zahlen setzen..
2003-01-28 22:29 sieloff
* ib.c: In case of automatic switch off the port, ib does not send
correct action = 0. Now action is set to 0 before sending the info
message and only if write to IB was without error. Additionaly
status is set to 1 in case if action == 1 to provide info message
in all cases.. Additionaly status is set to 1 in case if action ==
1 to provide info message in all cases.
2003-01-27 21:26 mtrute
* i2c-dev.c: Untersttzung fr POWER, zumindest formal
2003-01-27 21:13 mtrute
* i2c-dev.c, ib.c, loopback.c, m605x.c, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h: Tod eines Parameters: setGA/setGL senden
immer eine INFO Message
2003-01-27 20:12 sieloff
* ib.c: Inside of ib.c now info messages are created after a
command to the intellibox is send without error by calling
setGA/setGL with last parameter = 1. setFb is now called with
correct FB-Number (1 added).
2003-01-26 21:19 mtrute
* srcp-gl.c: LOCKS auf nicht initialiserte Loks sind auch
default-init
2003-01-26 18:46 mtrute
* config-srcpd.h, srcp-fb.c, srcp-info.c: LOCKS bei Start des INFO
Modus, FB Ports waren durcheinander
2003-01-26 10:41 mtrute
* PROGRAMMING-HOWTO, README, TODO, netserver.c: Hat der Bus das
Ger� berhaupt?
2003-01-25 17:45 mtrute
* ib.c, loopback.c, m605x.c, netserver.c, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h: LOCKS fuer GA und GL
2003-01-25 10:07 mtrute
* ddl-s88.c, ib.c, loopback.c, m605x.c, srcp-fb.c, srcp-ga.c,
srcp-gl.c, srcp-info.c, srcp-info.h, srcp-session.c, srcp-sm.c,
srcp-srv.c: Code verschoben und vereinfach (hoffentlich)
2003-01-24 18:06 mtrute
* config-srcpd.c, srcp-error.c, srcp-ga.c, srcp-gl.c,
srcp-session.c, srcp-time.c: SRCP Korrekturen
2003-01-21 20:13 sieloff
* loopback.c: initialisation of ga's inserted
2003-01-19 14:33 sieloff
* stdincludes.h: $id$ inserted, // comment at last line, to avoid
compiler warnings, #define _SRCP_MASTER_INCLUDE_H to avoid
multiple includes
2003-01-18 22:23 mtrute
* srcp-error.c: Leeerzeilen entfernt
2003-01-18 22:05 mtrute
* config-srcpd.c, config-srcpd.h, netserver.c, srcp-error.c: Erste
Fehlermeldungen bei nicht untersttzten Ger�en/Bussen im GET
2003-01-18 18:49 mtrute
* srcp-fb-s88.c, srcp-fb-s88.h: srcp-fb-s88 entfernt,
Funktionalit� ist in ddl-s88.*
2003-01-18 18:48 mtrute
* aclocal.m4, ddl-s88.c, ib.c, loopback.c, m605x.c, netserver.c,
srcp-error.c, srcp-fb.c, srcp-ga.c, srcp-gl.c, srcp-info.c,
srcp-info.h, srcp-power.c, srcp-srv.c, srcp-time.c, srcp-time.h,
srcpd.c: Bufixes: POWER Verwaltung, INFO Meldungen auf
Ger�efunktionen bezogen, TIME Modul begonnen, diverse sonstige
Bugfixes
2003-01-17 20:04 mtrute
* srcp-ga.c, srcp-info.c, srcp-time.c: Millisekunden mit 3
Nachkommastellen, inkl. fhrender Nullen
2003-01-17 19:56 mtrute
* netserver.c, srcp-descr.c, srcp-error.c, srcp-fb.c, srcp-ga.c,
srcp-gl.c, srcp-power.c, srcp-session.c, srcp-srv.c, srcpd.spec:
Millisekunden mit 3 Nachkommastellen, inkl. fhrender Nullen
2003-01-15 22:16 mamba123
* srcp-info.c:
fehlte include von srcp-descr.h
2003-01-15 20:04 mtrute
* srcp-ga.c, srcp-ga.h, srcp-gl.c, srcp-gl.h, srcp-info.c: INIT
Meldungen im INFO Modus
2003-01-15 18:16 mtrute
* netserver.h: added missing checkin
2003-01-14 19:38 mtrute
* m605x.c, srcp-gl.c, srcp-info.c: INFO Modus fuer Anfangswerte
erg�zt
2003-01-14 18:01 mtrute
* netserver.c, srcp-error.c, srcp-error.h, srcpd.conf: Timestamps
und Formatierungen
2003-01-13 06:59 mamba123
* Makefile.am, srcpd.c: Nochmal, diesmal auch ohne /etc
2003-01-13 06:52 mamba123
* Makefile.am, srcpd.c: Pfad fuer Konfigurationsdatei nun aus
Automake Makro generiert.
Keine Unterscheidung nach OS mehr noetig. MAM
2003-01-12 21:45 mtrute
* config-srcpd.c, netserver.c, srcp-descr.c, srcp-descr.h,
srcp-session.c, srcp-srv.c: Mehr INFO's, Bugfixing
2003-01-12 17:54 mtrute
* netserver.c: nur die vorhandenen Busse erlauben
2003-01-12 17:37 mborchers
* i2c-dev.c: cleanup
2003-01-12 17:23 mborchers
* i2c-dev.c: some cleanups
2003-01-12 16:58 mtrute
* config-srcpd.h, ddl-s88.c, m605x.c, srcp-fb.c, srcp-info.c,
srcp-info.h, srcp-power.c: Powermanagement fuer 605x und ddl-s88
eingebaut, auch im Infomodus
Rckmeldeinformationen im INFO Modus korrigiert
2003-01-12 16:08 mtrute
* srcpd.conf: Default ist ein nicht schadenanrichtender srcpd...
2003-01-12 12:56 mtrute
* config-srcpd.c, config-srcpd.h, m605x.c, srcp-power.c:
Powermanagement fuer 605x und neue conf-Option: auto_power_on fuer
automatisches Einschalten eines Busses bei Programmstart
2003-01-09 23:49 mamba123
* srcpd.c, config-srcpd.c:
Wieder ein richtiger Daemon, solange kein DBG_DEBUG gesetzt ist.
Und auch wieder Meldungen im Syslog statt auf stderr.
Sorry :-) MAM
2003-01-08 22:56 mborchers
* netserver.c, srcp-ga.c, srcp-gl.c, srcp-time.c: fixed return
string for GET * DESCRIPTION for - no device group - GA - GL -
TIME
2003-01-08 20:14 mborchers
* netserver.c: changed numeric return codes to their SRCP_* names
2003-01-08 18:52 mtrute
* netserver.c, srcp-ga.c: Initialisierung GA, Bugfixing GET -
Command
2003-01-07 20:25 mtrute
* srcpd.lsm, srcpd.spec: Anpassungen an die kommende neue Version
2003-01-07 19:56 mtrute
* ddl-s88.c: S88 unter Linux mit falschem Fehler
2003-01-07 08:05 mamba123
* srcpd.c:
nur ein paar casts umd Compiler Warnungen abzustellen
Bei FBSD Konfigurationsdatei nun in /usr/local/etc
2003-01-07 06:57 mamba123
* io.c: (nur FBSD) wenn CTS fehlt, wird ein eigener Zeitzaehler
gefuehrt. Der watchdog wird kuenstlich happy gehalten, so dass der
Thread nicht neu angeworfen wird. Nach 5s wird eine Warnung ins
Logfile geschrieben. Betraegt die Wartezeit laenger als 10s, so
wird der Thread anschliessend gekillt und vom Watchdog neu
initialisiert.
Machte keinen Sinn, alle 3-5s einen neuen Thread anzuwerfen, der
dann auch nicht zu Potte kommen kann, weil die Anlage ausgeschaltet
ist. Fuellte nur syslog mit tausenden von Meldungen...
MAM
2003-01-07 06:27 mamba123
* README.freebsd, ddl-s88.c:
clockrate auf "2" vorbelegt fuer FBSD, so komme ich bei DDL auf
ca.45kHz. (Komischerweise bricht die Abtastrate bei 3 auf 5kHz
ein?)
2003-01-07 00:01 mamba123
* config-srcpd.c, ib.c: Ibox Interface fuer FBSD
Geringfuegige Code Aenderungen:
- Den Linux Treiber braucht man nicht, er hat nur ein BREAK
erzeugt
- open_comport() angepasst analog zu m650x
- unbenutze Variablen auskommentiert (ich mag keine
Warnings)
das Verzeichnis ibox wird nicht benoetigt.
MAM
2003-01-06 21:50 mamba123
* io.c: in writeByte() Aenderung (nur FreeBSD, aber vielleicht
auch fuer euch gut?):
bei M605x wird der Zustand von CTS abgefragt.
wenn nicht vorhanden, dann schlaeft der thread fuer eine
sekunde
und probierts dann wieder.
Ohne diesen Teil blockieren bei mir ALLE Threads, solange die
Anlage nicht eingeschaltet ist. MAM
2003-01-06 21:16 mamba123
* m605x.c:
kleiner fehler in einer DBG Anweisung, statt dem debuglevel wurde
immer nur die Busnummer angezeigt (und ich such mir den Kipp@$"$
ab, warum ich jeden Mist in die Config schreiben kann und immer
kommt "1" raus :-)))) )
2003-01-06 19:47 mamba123
* README.freebsd, ddl-s88.c: [no log message]
2003-01-06 18:42 mamba123
* Makefile.am, systemtest:
Neues Skript (im Makefile aufgerufen) generiert je nach
Betriebsystem die Linkeroption -lpthread bzw. -pthread (auf BSD).
Makefile.am enthaelt den Aufruf.
Wie immer sollte keiner gestoert sein :-) MAM
2003-01-06 13:08 mamba123
* ddl-s88.c: der dritte Versuch :-) Wir kommen immer naeher...
2003-01-06 12:51 mamba123
* ddl-s88.c:
2.ter Versuch, schon ein wenig naeher an der Wahrheit :-)
2003-01-06 11:23 mamba123
* config-srcpd.c:
Zugang zu DDL-S88 auf FBSD freigegeben
2003-01-06 10:46 mamba123
* ddl-s88.c, ddl-s88.h:
1ter Versuch :-))) Der Parallelportzugriff wird nun bei FreeBSD
ueber das Device /dev/ppi[0|1|2] "umgeleitet". Die Linuxfunktionen
ioperm, inb und outb werden umdefiniert auf endsprechende
Emulationsfunktionen FBSD_... . Sollte bei Linux nicht stoeren
(wie immer BESCHEID sagen), obs ueberhaupt bei FreeBSD
funktioniert, kann ich nicht ausprobieren :-(
MAM
2003-01-06 09:30 mamba123
* aclocal.m4, configure, i2c-dev.c, stdincludes.h: [no log message]
2003-01-05 21:38 mtrute
* AUTHORS, ChangeLog, io.c, loopback.c, m605x.c: Kleinigkeiten,
Typos, Erg�zungen
2003-01-05 21:29 mborchers
* i2c-dev.c: removed unnecessary #includes moved #ifdef linux up
2003-01-05 20:55 mborchers
* i2c-dev.c: nother update for the new stdincludes.h
2003-01-05 20:50 mborchers
* config-srcpd.h: added support for i2c-dev module
2003-01-05 20:43 mborchers
* i2c-dev.c: update to use new stdincludes.h
2003-01-05 20:39 mborchers
* Makefile.am: added support for i2c-dev module
2003-01-05 20:24 mborchers
* config-srcpd.c: added support for the i2c-dev module
2003-01-05 20:14 mborchers
* i2c-dev.c, i2c-dev.h: initial checkin for i2c-dev-module
2003-01-05 17:10 mamba123
* config-srcpd.c, ddl-s88.c, hsi-88.c, ib.c, io.c, li100.c,
loopback.c, m605x.c, netserver.c, srcp-descr.c, srcp-error.c,
srcp-fb-i8255.c, srcp-fb-s88.c, srcp-fb.c, srcp-ga.c, srcp-gl.c,
srcp-info.c, srcp-lock.c, srcp-power.c, srcp-session.c, srcp-sm.c,
srcp-srv.c, srcp-time.c, srcpd.c, stdincludes.h, threads.c:
in allen Files die Includes eingesammelt und durch die zentrale
(neue) Datei stdincludes.h ersetzt.
In stdincludes.h werden die configure Defines ausgewertet und je
nach System header included (oder nicht, oder andere, oder ne boese
Meldung...)
Den Debug Kram etwas "aufgeraeumt" :-)
Bei Level > DBG_WARN bleibt der Server im Vordergrund (war Stufe 9,
das ist jedoch ein ziemlicher Schuss vor das Knie, da die Interface
>4 gar nicht mehr eingeschaltet wurden, was will man also sehen???)
Ausserdem wird bei >DBG_WARN statt syslog auf stderr geschrieben
(knallte mir das syslog immer zu)
Bei "NichtLinux" werden die Interface Intellibox und DS88 NICHT mit
eingebunden! Entsprechende Aufrufe sind ge-if-def-t
Bei Linux "sollte" (hoffentlich) alles weiter so gehen, wie vorher.
Bitte Testen und Pruegel in meine Richtung
MAM
2003-01-05 16:28 mborchers
* srcp-ga.c: corrected locking problems for device group GA in
init_GA()
2003-01-05 16:16 mborchers
* netserver.c: corrected locking problems for device group GA in
handleSET()
2003-01-05 13:12 mtrute
* srcp-info.c, srcpd.c: Infomode arbeitet mit queues; viele
Leser/viele Schreiber
2003-01-04 17:08 mtrute
* io.c, li100.c, m605x.c, netserver.c, srcp-fb.c, srcp-ga.c,
srcp-gl.c, srcp-gl.h, srcp-info.c, srcpd.c: Working GA/GL,
Cleanups, Bugfixing
2003-01-03 19:13 mtrute
* DESIGN, PROGRAMMING-HOWTO, README, netserver.c, srcp-error.c,
srcp-error.h, srcp-fb.c, srcp-ga.c, srcp-session.c, srcp-srv.c,
srcpd.spec: Fehlercodes bereinigt
2002-12-26 19:38 mtrute
* PROGRAMMING-HOWTO: Using CVS sources for the first time...
2002-12-16 19:30 mtrute
* srcp-fb.c, srcp-fb.h: nicht alle Busse haben FB..
2002-12-15 21:10 mtrute
* netserver.c, srcp-error.c, srcp-error.h, srcp-fb.c, srcp-fb.h,
srcp-info.c: Feinheiten
2002-12-10 20:04 mtrute
* netserver.c: LOCK GA/GL
2002-12-08 20:38 mtrute
* m605x.c, netserver.c, srcp-ga.c, srcp-ga.h, srcp-gl.c,
srcpd.spec: LOCK fuer GA, Bugfixing
2002-12-08 14:25 mtrute
* hsi-88.c, ib.c, li100.c: Zentrale Meldungen eingefuehrt; Cleanups
2002-12-08 14:12 mtrute
* PROGRAMMING-HOWTO, README, config-srcpd.c, config-srcpd.h,
ddl-s88.c, io.c, loopback.c, m605x.c, netserver.c, srcp-fb-i8255.c,
srcp-fb-s88.c, srcp-fb.c, srcp-ga.c, srcp-gl.c, srcp-info.c,
srcp-session.c, srcp-srv.c, threads.c: Zentrale Meldungen
eingefuehrt; Cleanups
2002-11-28 20:26 mtrute
* DESIGN, netserver.c, srcp-gl.c: LOCK GL
2002-11-28 19:11 mtrute
* netserver.c, srcp-gl.c, srcp-gl.h: Locksupport, unfinished
2002-11-26 20:43 mtrute
* PROGRAMMING-HOWTO: Kurzbeschreibung..
2002-09-27 19:55 mtrute
* AUTHORS, ChangeLog, README, config-srcpd.c: Betafassung
2002-09-16 19:34 mtrute
* ib.c, netserver.c, srcp-info.c: fixed typos
2002-08-16 13:50 schmischi
* ib.c, srcp-gl.c, srcp-info.c, srcp-info.h, srcp-sm.c, srcp-sm.h:
working SM
2002-08-16 12:07 schmischi
* srcp-sm.c, srcp-sm.h: working SM
2002-08-16 12:06 schmischi
* Makefile.am, Makefile.dist, aclocal.m4, config-srcpd.c,
config-srcpd.h, configure, ib.c, ib.h, io.c, loopback.c, m605x.c,
netserver.c, srcp-ga.c, srcp-ga.h, srcp-gl.c, srcp-gl.h,
srcp-info.c, srcp-info.h, srcpd.kdevprj: working SM for IB
2002-07-20 11:06 schmischi
* config-srcpd.c, config-srcpd.h, hsi-88.c, ib.c, io.c, io.h,
m605x.c, srcp-gl.c: working IB
2002-07-14 00:41 schmischi
* ib.c, io.c, srcp-fb.c, srcp-ga.c, srcp-gl.c, srcp-info.c,
srcpd.c: variable Entprellzeit je Bus OK
2002-07-10 21:22 schmischi
* config-srcpd.c, srcp-fb.c, srcp-fb.h, srcpd.c: variable
Entprellzeit je Bus
2002-07-09 01:27 schmischi
* ib.c, ib.h, srcp-fb.c, srcp-fb.h, srcp-info.c, srcpd.c,
srcpd.kdevprj: Bugfixes + Unterdrckung von Kontaktproblemen
2002-07-09 01:26 schmischi
* Makefile.dist: Makefile zum Erzeugen von configure
2002-07-05 18:46 schmischi
* config-srcpd.c, ddl-s88.c, hsi-88.c, ib.c, m605x.c, netserver.c,
srcp-ga.c, srcp-gl.c, srcp-info.c, srcp-info.h, srcpd.c: diverse
kleinere Bugs beseitigt
2002-07-03 18:58 schmischi
* ddl-s88.c, hsi-88.c, ib.c, loopback.c, m605x.c, netserver.c,
srcp-error.h, srcp-fb.c, srcp-fb.h, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h, srcp-info.c, srcp-info.h: dynamische Felder
fr FB, GA, GL
2002-06-27 21:07 schmischi
* config-srcpd.c, netserver.c, srcp-fb.c, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h, srcp-info.c, srcp-session.c, srcp-time.c,
srcpd.c: ein Info-Thread
2002-06-26 00:28 schmischi
* ibox/Makefile: ein Info-Thread
2002-06-26 00:24 schmischi
* hsi-88.c, srcpd.kdevprj, srcp-fb.h: ein Info-Thread
2002-06-26 00:19 schmischi
* ibox/Makefile: [no log message]
2002-06-26 00:16 schmischi
* Makefile.in, Makefile: [no log message]
2002-05-25 13:43 mtrute
* netserver.c, srcp-fb.c, srcp-ga.c, srcp-ga.h, srcp-gl.c,
srcp-time.c: Defaultinitialisierungen
2002-05-25 12:29 mtrute
* netserver.c, srcp-ga.c, srcp-ga.h, srcp-gl.c, srcp-session.c,
srcp-session.h, srcp-time.c, srcp-time.h: GA und TIME
2002-05-24 20:06 mtrute
* Makefile, config-srcpd.c, config-srcpd.h, ddl-s88.c, srcp-info.c,
srcp-srv.c, srcpd.c: Cleanups...
2002-05-23 20:37 schmischi
* Makefile, hsi-88.c, srcp-fb.c, srcp-info.c, srcpd.c: laufende
Meldungen am Infoport
2002-05-22 23:06 schmischi
* Makefile, config-srcpd.c, config-srcpd.h, ddl-s88.c, hsi-88.c,
ib.c, m605x.c, srcp-fb.c, srcp-fb.h, srcp-info.h, srcpd.c:
setFBmodul allgemeingltig
2002-05-22 17:02 schmischi
* Makefile, hsi-88.h, netserver.c, netserver.h, srcp-fb.c,
srcp-info.c, srcp-info.h: Info-Modus um rudiment�en Start
erweitert
2002-05-21 16:42 schmischi
* Makefile, hsi-88.c, ib.c, io.c, loopback.c, srcp-fb-s88.c,
srcp-fb.c, srcp-info.c, srcp-info.h, srcpd.c: erste Version des
Infoports
2002-05-21 16:36 schmischi
* .cvsignore: ignorieren von Makefile.in ...
2002-05-20 23:53 schmischi
* Makefile, Makefile.am, Makefile.in, config-srcpd.c, hsi-88.c,
ib.c, io.c, m605x.c, netserver.c, netserver.h, srcp-fb.c, srcpd.c,
srcpd.conf, srcpd.kdevprj, threads.h, srcp-info.c, srcp-info.h:
Infothread nach srcp-info.c/h ausgelagert
2002-05-19 22:23 schmischi
* Makefile, Makefile.in, aclocal.m4, config.h.in, configure,
srcpd.kdevprj: Vereinheitlichungen bei srcpd.conf
2002-05-19 22:17 schmischi
* srcpd.conf: ?
2002-05-19 22:10 schmischi
* config-srcpd.c: neue Prfungen
2002-05-19 22:09 schmischi
* ddl-s88.c: ?
2002-05-19 22:07 schmischi
* hsi-88.c: Anpassungen fr HSI-88
2002-05-19 22:06 schmischi
* ib.c: Modifiktaion /w srcpd.conf
2002-05-19 22:04 schmischi
* io.c: readByte erg�zt
2002-05-19 22:03 schmischi
* srcpd.c: Anpassungen fr HSI-88
2002-05-19 22:02 schmischi
* srcp-fb.c: Korrektur der Berechnung von _fb_state
2002-05-19 21:47 mtrute
* README, ddl-s88.c, netserver.c, srcpd.conf, threads.c: Doku
updates, bugfixes
2002-05-19 20:12 mtrute
* hsi-88.c, ib.c, io.c, m605x.c, srcpd.conf: 6051 reads FBs, minor
API Changes
2002-05-19 18:45 mtrute
* ddl-s88.c, srcp-fb.c, srcp-fb.h, srcpd.c, srcpd.conf: Working DDL
s88 module. Minor typos
2002-05-18 17:43 mtrute
* Makefile, Makefile.in, aclocal.m4, config-srcpd.c,
config-srcpd.h, config.h.in, configure, ddl-s88.c, ddl-s88.h,
m605x.c, srcpd.c, srcpd.conf, srcpd.kdevprj: fixing typos
2002-05-16 00:58 schmischi
* README.ibox: /w Kernel 2.2.x
2002-05-16 00:48 schmischi
* ibox/Makefile: /w Kernel 2.2.x
2002-05-16 00:37 schmischi
* Makefile.in, aclocal.m4, config-srcpd.c, config.h.in, configure,
ddl-s88.c, hsi-88.c, hsi-88.h, ib.c, io.c, io.h, li100.c,
loopback.c, m605x.c, netserver.c, srcp-descr.c, srcp-error.c,
srcp-error.h, srcp-fb.c, srcp-fb.h, srcp-ga.c, srcp-gl.c,
srcp-session.c, srcp-srv.c, srcpd.c, srcpd.conf, srcpd.kdevprj:
Anpassungen an neue srcpd.conf
2002-05-09 20:32 mtrute
* .cvsignore, ddl-s88.c, ddl-s88.h, ib.c, m605x.c, netserver.c,
netserver.h, srcp-fb-s88.h, srcp-fb.c, srcp-fb.h, srcp-ga.c,
srcp-ga.h, srcp-gl.c, srcp-gl.h, srcp-lock.c, srcp-session.c,
srcp-session.h, srcp-srv.c, srcp-srv.h, srcp-time.c, srcp-time.h,
srcpd.kdevprj: mehr Geraete, cleanups
2002-05-09 17:37 mtrute
* ChangeLog, Makefile, Makefile.am, Makefile.in, NEWS, ddl-s88.c,
loopback.c, srcpd.spec, README.ibox: Randthemen
2002-05-09 15:29 mtrute
* config-srcpd.c, loopback.c, m605x.c, srcp-srv.c, srcpd.c:
Bugfixing bei XMLauswertung, incomplete
2002-05-08 16:56 mtrute
* config-srcpd.c, ddl-s88.c, ddl-s88.h, hsi-88.c, hsi-88.h, ib.c,
ib.h, loopback.c, loopback.h, srcp-srv.c, srcp-srv.h, srcpd.c,
threads.c: XML Umbauten, unvollstaendig
2002-05-08 15:43 mtrute
* config-srcpd.c, m605x.c, m605x.h, srcpd.conf: XML Umbauten,
unvollst�dig
2002-05-08 08:17 mtrute
* config-srcpd.c, ddl-s88.c, ddl-s88.h, m605x.c, m605x.h,
srcp-error.c: neuer DDL S88 Code, cleanups
2002-05-07 21:22 mtrute
* config-srcpd.c, config-srcpd.h, ib.c, ib.h, loopback.c,
loopback.h, m605x.c, netserver.c, srcp-error.c, srcp-error.h,
srcp-gl.c, srcp-gl.h, srcpd.c, srcpd.kdevprj: driver lokale und
spezifische Daten, DESCRIPTION
2002-05-04 21:33 mtrute
* hsi-88.c, hsi-88.h, loopback.c: data structures
2002-05-04 21:22 mtrute
* README, aclocal.m4, config-srcpd.c, config-srcpd.h, config.h.in,
configure, ddl-s88.c, ddl-s88.h, loopback.c, loopback.h, m605x.c,
m605x.h, mkinstalldirs, netserver.c, netserver.h, srcp-descr.c,
srcp-descr.h, srcp-error.c, srcp-error.h, srcp-fb.c, srcp-fb.h,
srcp-ga.c, srcp-ga.h, srcp-gl.c, srcp-gl.h, srcp-lock.c,
srcp-lock.h, srcp-power.c, srcp-power.h, srcp-srv.c, srcp-srv.h,
srcp-time.c, srcp-time.h, srcpd.c, srcpd.spec, threads.c,
threads.h: Datenstrukturen fuer Busse
2002-05-04 11:26 schmischi
* COPYING, LICENSE.txt: nach gnu COPYING statt LICENSE
2002-05-04 11:25 schmischi
* srcpd.kdevprj: Projektdatei fr kdevelop
2002-05-04 11:15 schmischi
* acinclude.m4, aclocal.m4, config-srcpd.c, config-srcpd.h,
config.h.in, configure, configure.in, ddl-s88.c, ddl-s88.h,
hsi-88.c, hsi-88.h, ib.c, ib.h, io.c, li100.c, li100.h, loopback.c,
m605x.c, netserver.c, srcp-descr.c, srcp-descr.h, srcp-error.c,
srcp-error.h, srcp-fb-i8255.c, srcp-fb-i8255.h, srcp-fb-s88.c,
srcp-fb-s88.h, srcp-fb.c, srcp-fb.h, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h, srcp-lock.c, srcp-lock.h, srcp-power.c,
srcp-power.h, srcp-session.c, srcp-session.h, srcp-srv.c,
srcp-srv.h, srcp-time.c, srcp-time.h, srcpd.c, srcpd.conf,
threads.c, threads.h: Sourcecode nach GNU-Standard
2002-05-03 17:45 schmischi
* ibox/ibox.c: Sourcecode nach GNU-Standard
2002-04-25 18:07 mtrute
* ChangeLog, Makefile, Makefile.am, Makefile.in, NEWS, README,
TODO, acinclude.m4, aclocal.m4, config-srcpd.c, config-srcpd.h,
config.h.in, configure, configure.in, ddl-s88.c, ddl-s88.h,
hsi-88.c, ib.c, ib.h, io.c, io.h, loopback.c, loopback.h, m605x.c,
m605x.h, missing, mkinstalldirs, netserver.c, netserver.h, rcsrcpd,
srcp-descr.c, srcp-descr.h, srcp-error.c, srcp-error.h,
srcp-fb-i8255.c, srcp-fb.c, srcp-fb.h, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h, srcp-lock.c, srcp-lock.h, srcp-power.c,
srcp-power.h, srcp-srv.c, srcp-srv.h, srcp-time.c, srcp-time.h,
srcpd.c, srcpd.lsm, srcpd.xml, threads.c, threads.h, ibox/Makefile,
.cvsignore, li100.c, li100.h, libtool, srcp-session.c,
srcp-session.h, srcpd.conf, srcpd.xml, depcomp: Grobes Framework
2002-04-08 20:59 mtrute
* ChangeLog, README, config-srcpd.c, ib.c, io.c, li100.c, m605x.c,
m605x.h, mkinstalldirs, netserver.c, netserver.h, srcp-fb-s88.c,
srcp-fb-s88.h, srcp-fb.c, srcp-fb.h, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h, srcp-power.c, srcp-power.h, srcp-srv.c,
srcp-srv.h, srcp-time.c, srcp-time.h, srcpd.c, srcpd.spec,
threads.c, threads.h: queues und mehr...
2002-03-22 20:29 mtrute
* ChangeLog, README, ibox/Makefile: Polieren
2002-03-21 20:13 mtrute
* ChangeLog, Makefile.am, README, README.ibox, ddl-s88.c,
ddl-s88.h, hsi-88.c, hsi-88.h, m605x.c, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h, srcpd.spec, threads.c, threads.h,
ibox/Makefile, ibox/ibox.c, ibox/ibox.h, ibox/mkibox.sh: resync mit
Release1 Branch, richtige Command Queue
2002-03-21 20:11 mtrute
* AUTHORS: resync mit Relese1 Branch, richtige Command Queue
2002-03-20 19:56 mtrute
* ChangeLog, Makefile.in, NEWS, README, README.ibox,
config-srcpd.c, config.h.in, m605x.c, srcpd.c, srcpd.conf,
srcpd.spec, threads.c: Kleinere Erg�zungen fr 1.1
2002-03-20 19:56 mtrute
* README.ibox: file README.ibox was initially added on branch
RELEASE_1_MAINTENANCE.
2002-03-18 23:52 schmischi
* Makefile: [no log message]
2002-03-18 23:50 schmischi
* .cvsignore, Makefile.am, Makefile.in, TODO, aclocal.m4,
config.h.in, ib.c, li100.c, m605x.c, netserver.c, srcp-ga.c,
srcp-gl.c, srcpd.c, srcpd.kdevprj: wieder ohne Semaphore
2002-03-17 21:21 schmischi
* .cvsignore: [no log message]
2002-03-17 16:13 schmischi
* Makefile: ohne pv.h
2002-03-17 15:49 schmischi
* pv.c, pv.h: ohne Semaphore
2002-02-14 21:48 schmischi
* pv.h: Fehler in pv.h korrigiert
2002-02-13 21:03 schmischi
* Makefile.in, ib.c, li100.c, m605x.c, netserver.c, pv.c, pv.h,
srcp-ga.c, srcp-gl.c, srcpd.c, srcpd.kdevprj, srcpd.kdevses:
Semaphore korrigiert
2002-02-10 18:24 schmischi
* ibox/.cvsignore: .cvsignore korrigert
2002-02-10 18:23 schmischi
* srcpd.kdevprj: file srcpd.kdevprj was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:23 schmischi
* .cvsignore, srcpd.kdevprj, srcpd.kdevses: mit KDevelop
2002-02-10 18:23 schmischi
* srcpd.kdevses: file srcpd.kdevses was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:23 schmischi
* .cvsignore: file .cvsignore was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* ddl-s88.h: file ddl-s88.h was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* ddl-s88.c: file ddl-s88.c was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* pv.h: file pv.h was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* hsi-88.h: file hsi-88.h was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* ibox/ibox.h: file ibox.h was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* hsi-88.c: file hsi-88.c was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* pv.c: file pv.c was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* ddl-s88.c, ddl-s88.h, hsi-88.c, hsi-88.h, li100.c, li100.h, pv.c,
pv.h, ibox/.cvsignore, ibox/Makefile, ibox/README, ibox/ibox.c,
ibox/ibox.h, ibox/mkibox.sh: mit Kernelmodul
2002-02-10 18:12 schmischi
* li100.c: file li100.c was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* ibox/README: file README was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* ibox/Makefile: file Makefile was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* ibox/.cvsignore: file .cvsignore was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* li100.h: file li100.h was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* ibox/ibox.c: file ibox.c was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 18:12 schmischi
* ibox/mkibox.sh: file mkibox.sh was initially added on branch
RELEASE_1_MAINTENANCE.
2002-02-10 10:31 mtrute
* m605x.c, srcpd.spec: minor timing calculation error, typos
2002-02-10 10:11 schmischi
* AUTHORS, Makefile.am, Makefile.in, NEWS, README, TODO,
config-srcpd.c, config-srcpd.h, ib.c, ib.h, io.c, netserver.c,
srcp-fb-s88.c, srcp-ga.c, srcp-ga.h, srcp-gl.c, srcpd.c,
srcpd.conf: mit Semaphoren
2002-02-02 18:36 mtrute
* NEWS, aclocal.m4, netserver.c, srcp-fb.c: off by 1 error bei den
Rckmeldern im Kommandomodus
2002-01-30 20:43 mtrute
* m605x.c: Optimierungen
2002-01-22 21:08 mtrute
* config-srcpd.c, config-srcpd.h, srcpd.c: PID File added
2002-01-19 22:46 mtrute
* README: Neues Readme...
2002-01-19 22:46 mtrute
* srcpd.c: Prozesse.... warten
2002-01-19 22:25 mtrute
* Makefile.am, Makefile.in: removed unsused files
2002-01-19 22:24 mtrute
* rcsrcpd: Typos
2002-01-19 22:24 mtrute
* srcpd.c, threads.c: Threads und Feinheiten...
2002-01-19 22:21 mtrute
* iochannel.c, iochannel.h, netserver.c: removed unsused files
2002-01-19 15:24 mtrute
* iochannel.c, iochannel.h: Deleted unused files
2002-01-18 18:01 mtrute
* ChangeLog, NEWS, config-srcpd.h, netserver.c, netserver.h,
srcp-error.c, srcp-error.h, srcp-fb-i8255.c, srcp-fb.c, srcp-fb.h,
srcp-ga.c, srcp-ga.h, srcp-gl.c, srcp-gl.h, srcp-power.c,
srcp-power.h, srcp-time.c, srcp-time.h, srcpd.c, threads.c: API
Changes, cleanups
2002-01-17 19:52 mtrute
* srcpd.c: running non-root
2002-01-16 22:07 mtrute
* mutex: housekeeping
2002-01-16 22:06 mtrute
* COPYING: COPYING removed, LICENSE.txt is ok
2002-01-16 22:04 mtrute
* Makefile, config-srcpd.c, config-srcpd.h, rcsrcpd, srcpd.c: added
PID File in /var/run; fixed typos
2002-01-15 20:32 mtrute
* ChangeLog, Makefile.in, README, config-srcpd.c, config-srcpd.h,
configure, configure.in, configure.scan, ib.c, ib.h, loopback.c,
loopback.h, m605x.c, m605x.h, mkinstalldirs, mutex, netserver.c,
netserver.h, srcp-descr.c, srcp-descr.h, srcp-error.c,
srcp-error.h, srcp-fb-s88.c, srcp-fb-s88.h, srcp-fb.c, srcp-fb.h,
srcp-ga.c, srcp-ga.h, srcp-gl.c, srcp-gl.h, srcp-lock.c,
srcp-lock.h, srcp-power.c, srcp-power.h, srcp-srv.c, srcp-srv.h,
srcp-time.c, srcp-time.h, srcpd.c, srcpd.lsm, srcpd.xml, threads.h:
Loopback Dummy Bus Driver
2002-01-14 20:50 mtrute
* srcpd.lsm: minor typos
2002-01-14 20:50 mtrute
* threads.c: TCP Keepalives aktiviert
2002-01-14 20:49 mtrute
* srcpd.spec, srcpd.spec: LSB compliant install
2002-01-14 20:48 mtrute
* threads.c: Keepalives bei TCP Verbindungen
2002-01-11 20:17 mtrute
* Makefile.am, Makefile.in, NEWS, README, TODO, config-srcpd.c:
Maintenance Release, do not use autoconf 2.52
2002-01-11 20:16 mtrute
* threads.c: Socketverwaltung verbessert
2002-01-11 20:15 mtrute
* rcsrcpd, srcpd.spec: RPM Files
2002-01-09 20:46 mtrute
* rcsrcpd: NFS is not essential...
2001-12-23 20:46 mtrute
* srcpd.spec, Makefile.am: /etc ist doch besser, Feinheiten
2001-12-22 20:12 mtrute
* ChangeLog, Makefile.am, Makefile.in, README, TODO,
config-srcpd.c, configure, configure.in, m605x.c, m605x.h,
mkinstalldirs, netserver.c, netserver.h, srcp-descr.c,
srcp-descr.h, srcp-error.c, srcp-error.h, srcp-fb-s88.c,
srcp-fb-s88.h, srcp-fb.c, srcp-fb.h, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h, srcp-lock.c, srcp-lock.h, srcp-power.c,
srcp-power.h, srcp-srv.c, srcp-srv.h, srcp-time.c, srcp-time.h,
srcpd.spec, threads.c, threads.h, rcsrcpd: einige Updates, rpm
vorbereitet (fuer SuSE)
2001-10-08 21:16 mtrute
* netserver.c, srcp-error.c, srcp-error.h, srcp-fb-s88.c,
srcp-fb-s88.h, srcp-fb.c, srcp-fb.h, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h, srcp-lock.c, srcp-lock.h, srcp-power.c,
srcp-power.h, srcp-srv.c, srcp-srv.h, srcp-time.c, srcp-time.h,
threads.c: API fr die Hardwaremodule und Ger�egruppen ge�dert,
cleanup
2001-09-21 20:10 mtrute
* Makefile, Makefile.am, Makefile.in, netserver.c, srcp-descr.c,
srcp-descr.h, srcp-error.c, srcp-error.h, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h, srcp-lock.c, srcp-lock.h: Locks,
Fehlerverwaltung angelegt
2001-09-16 14:38 mtrute
* Makefile, Makefile.am, Makefile.in, README, acinclude.m4,
aclocal.m4, config-srcpd.c, config-srcpd.h, config.h.in, configure,
configure.in, ib.c, ib.h, io.c, io.h, m605x.c, m605x.h,
mkinstalldirs, netserver.c, netserver.h, srcp-fb-s88.c,
srcp-fb-s88.h, srcp-fb.c, srcp-fb.h, srcp-ga.c, srcp-ga.h,
srcp-gl.c, srcp-gl.h, srcp-power.c, srcp-power.h, srcp-srv.c,
srcp-srv.h, srcp-time.c, srcp-time.h, srcpd.8, srcpd.c, srcpd.xml,
threads.c, threads.h: rework on the way to SRCP 0.8, do not use it
2001-08-21 19:53 mtrute
* threads.c: sofortiger Neustart des Netzwerksockets erm�licht,
Patch von Marin Rimmele, Syslogausgaben erg�zt
2001-08-15 13:20 mtrute
* Makefile.am, Makefile.in, config-srcpd.c, config.h.in, configure,
configure.in, srcp-time.c, srcpd.8: libxml2 anstelle der libxml,
kleinere doc-fixes
2001-08-07 19:34 mtrute
* config-srcpd.c: aufraeumen
2001-08-05 20:18 mtrute
* srcpd.8: added really simple man page
2001-08-05 15:36 mtrute
* ChangeLog, Makefile, Makefile.am, Makefile.in, config-srcpd.c,
config.h.in, configure, configure.in, srcpd.lsm, srcpd.xml,
srcpd.conf: Umstellung Konfigurationsdatei auf XML-Format
2001-08-05 14:19 mtrute
* srcpd.c: Sockets aus CONF Datei bernehmen, vor den
CLI-Parametern\!
2001-07-27 19:43 mtrute
* Makefile, configure: Vorbereitungen zum Release
2001-07-27 19:37 mtrute
* config-srcpd.c, srcpd.c, configure.in: Vorbereitungen zum Release
2001-07-24 18:01 schmischi
* ib.c: IB mit allen ttyS*
2001-07-24 18:00 schmischi
* config-srcpd.c, srcpd.c: DEV_COMPORT bereinigt
2001-07-23 23:04 schmischi
* config-srcpd.c, srcpd.c: DEV_COMPORT bereinigt
2001-07-22 19:41 mtrute
* srcp-fb-s88.c: undo all changes...
2001-07-22 12:36 schmischi
* srcp-fb-s88.c: Ports bei S88
2001-07-22 12:23 schmischi
* Makefile.in, config-srcpd.c, ib.c, io.c, m605x.c, netserver.c,
srcp-fb-i8255.c, srcp-fb-s88.c, srcp-fb.c, srcp-ga.c, srcp-gl.c,
srcp-gl.h, srcp-time.c, srcpd.c, srcpd.lsm, threads.c: Korrektur /w
NUMBER_
2001-07-21 16:01 mtrute
* srcp-fb-s88.c: Port 16 der S88 Module unerreichbar gewesen
2001-07-21 15:52 mtrute
* netserver.c, srcp-ga.c, srcp-gl.c: Nur die via srcpd.conf
angegebenen Ger�e und nicht alle adressierbaren GA/GL beachten
2001-07-14 17:58 mtrute
* ChangeLog, Makefile.in, acinclude.m4, aclocal.m4, config-srcpd.c,
config.h.in, configure, configure.in, io.c, io.h, m605x.c, srcpd.c,
srcpd.conf: COM Port Einstellungen als Runtime Option
2001-07-12 20:55 schmischi
* m605x.c, srcpd.c: neuer Versuch zum Comport
2001-07-12 20:37 schmischi
* ib.c, srcp-ga.c, srcp-gl.c, srcp-time.c: mehrere Befehle in einer
Zeile
2001-07-11 23:17 schmischi
* ChangeLog, acinclude.m4, aclocal.m4, config.h.in, configure,
configure.in, io.c, io.h, m605x.c, srcpd.c: neue autoconf-Option
2001-07-11 21:49 mtrute
* AUTHORS, README, srcpd.lsm: Redaktionelle Anpassungen
2001-07-11 20:43 mtrute
* m605x.c: milli und microsekunden, sch�heit
2001-07-11 20:39 schmischi
* Makefile.in: [no log message]
2001-07-11 20:33 schmischi
* Makefile.in, config-srcpd.c, ib.c, ib.h, io.c, io.h, m605x.c,
netserver.c, srcp-fb-s88.c, srcp-fb.c, srcp-ga.c, srcp-gl.c,
srcp-time.c, srcpd.c, threads.c: save(open)_comport() nach
io.c/io.h
2001-07-11 01:51 schmischi
* config.c, config.h, fb.c, fb.h, ga.c, ga.h, gl.c, gl.h,
intelliboxd.c, intelliboxd.h, m6051d.h, srcp-fb-m6051.c,
srcp-fb-m6051.h, m6051d.c, m6051d.o: alte Teile entfernt
2001-07-11 01:47 schmischi
* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, Makefile.in,
NEWS, README, TODO, acinclude.m4, aclocal.m4, config-srcpd.c,
config.guess, config.h.in, config.sub, configure, configure.in,
ib.c, install-sh, io.c, ltconfig, ltmain.sh, missing,
mkinstalldirs, netserver.c, srcp-fb-s88.c, srcp-fb.c, srcpd.c,
srcpd.conf, srcpd.lsm, stamp-h.in: mit autoconf
2001-07-06 00:06 schmischi
* srcp-fb-i8255.c, srcp-fb-i8255.h, srcp-fb.c, srcp-fb.h,
srcp-ga.c, srcp-ga.h, srcp-gl.c, srcp-gl.h, srcp-power.c,
srcp-power.h, srcp-srv.c, srcp-srv.h, srcp-time.c, srcp-time.h,
srcpd.c, threads.c, threads.h: erste Version von M6051 und IB in
einem Server
2001-07-06 00:02 schmischi
* Makefile, config-srcpd.c, config-srcpd.h, ib.c, ib.h, io.c, io.h,
iochannel.c, iochannel.h, m605x.c, m605x.h, netserver.c,
netserver.h, srcp-fb-s88.c, srcp-fb-s88.h: erste Version von M6051
und IB in einem Server
2001-06-28 18:55 mtrute
* LICENSE.txt, Makefile, README, config.c, config.h, fb.c, fb.h,
ga.c, ga.h, gl.c, gl.h, intelliboxd.c, intelliboxd.h, iochannel.c,
iochannel.h, m6051d.c, m6051d.h, m6051d.o, m605x.c, m605x.h,
netserver.c, netserver.h, srcp-fb-i8255.c, srcp-fb-i8255.h,
srcp-fb-m6051.c, srcp-fb-m6051.h, srcp-fb.c, srcp-fb.h, srcp-ga.c,
srcp-ga.h, srcp-gl.c, srcp-gl.h, srcp-power.c, srcp-power.h,
srcp-srv.c, srcp-srv.h, srcp-time.c, srcp-time.h, threads.c,
threads.h: initial import of m6051d and intelliboxd
|