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
|
uhd (4.3.0.0-0ubuntu1) ubuntu_release; urgency=low
* ci
- Add n310 rf tests to monopipeline
- Add XQ testing to n321
- Mark SucceededWithIssues as failure
- Remove Fedora 34 and add Fedora 36
- set required capability for windows builds
- Workaround Ubuntu 18.04 systemd bug 1988563
* docs
- Add known issue for Xilinx AR 76681
- Clarify live install and remove version
* examples
- Enable radio loopback for a single radio
- rx_samples_c: Use error_code instead of return_code
* experts
- Move expert framework into public API
* extension
- Add extension example
- Add extension framework
- Add Extension Framework documentation
* features
- Make all feature headers install
* fpga
- ci: Upgrade to Vivado 2021.1
- docs: Upgrade to Vivado 2021.1
- e31x: Add PROTOVER to eth_internal
- e31x: Cleanup MTU parameters
- e31x: Fix IP dependencies
- e31x: Upgrade to Vivado 2021.1
- e320: Bump FPGA compat to 6.1
- e320: Cleanup MTU parameters
- e320: Support advanced transport adapter
- e320: Upgrade to Vivado 2021.1
- Fix target dependencies in Makefile.xxx.inc
- Fix Vivado version check in viv_hardware_utils
- lib: Add advanced features to IPv4 SV transport adapter
- lib: Add chdr_strip_header module
- lib: Add compat to Verilog transport adapter
- lib: Add eth_ipv4_interface_tb
- lib: Add MTU parameter to eth_internal
- lib: Add NET_CHDR_W parameter to transport adapters
- lib: Add RegPort SystemVerilog interface
- lib: Add support for length in tuser in eth_ipv4_add_udp
- lib: Add verilog-compatible wrapper for eth_ipv4_interface
- lib: Fix addsub_hls
- lib: Fix NODE_INST parameter in eth_internal
- lib: Upgrade to Vivado 2021.1
- n3xx: Add BUFG to SPI output line to ease timing
- n3xx: Add PROTOVER to n3xx_mgt_wrapper
- n3xx: Bump FPGA compat to 8.1
- n3xx: Cleanup MTU parameters
- n3xx: Fix async clocks relationship
- n3xx: Remove unused USE_REPLAY parameter
- n3xx: Support advanced transport adapter
- n3xx: Upgrade to Vivado 2021.1
- sim: Support unused tkeep in AxiStreamPacket::dump_bytes()
- sim: Update struct enum initialization
- sim: Workaround Vivado bug in ChdrIfaceBfm_tb
- tools: Add utility to upgrade TCL-based BD
- tools: Allow IP renaming with viv_ip_xci_editor.py
- tools: Fix HLS IP builder for Vivado 2021.1
- tools: Lattice build flow clean-up
- Update makefiles to allow parallel FPGA builds
- Use AR76780 patch for fir_compiler
- x300: Cleanup MTU parameters
- x300: Upgrade to Vivado 2021.1
- x400: Bump FPGA compat to 7.9
- x400: Fix link status detection of 10 GbE IP
- x400: Fix NODE_INST for transport adapters
- x400: Fix transport adapter PROTOVER
- x400: Upgrade to Vivado 2021.1
- x400: zbx: Revision Bump
- zbx: Update HTML regmap
* host
- if monotonic don't run monotonic algo
* images
- Update filesystem images to point to 4.3.0.0-rc2
- update fpgas for vivado 2021.1 upgrade
- update manifest for raw udp streaming
- installer: update ubuntu uhd library verison
* mpm
- bump fpga compat for raw udp streaming
- bump x4xx fpga compat
* MPMD:
- Limit 1GbE MTU discovery to 1500
* python
- Fix error from pybind11 2.10 update
- update to pybind11 for Python 3.11
* rfnoc
- Mutex graph on set_property
* tests
- Setup isolated processors to use performance governor
* tune_map
- Publish and simplify zbx_tune_map
* uhd
- multi_usrp.cpp remove commented out code
- Revert Raw UDP Host Changes
- update to uniform SPDX license identifier
-- Ettus Research <packages@ettus.com> Mon, 12 Sep 2022 05:10:25 -0800
uhd (4.2.0.1-0ubuntu1) ubuntu_release; urgency=low
* cal
- add method to get the current power cal tracking mode
* ci
- Add b210 hardware to rhombus
- add devtest e320 support
- Add devtests to hardware-test-dev
- Add fedora rpm installer build
- Add n310 into devtests
- Add n321 to devtest
- Add new x3xx hardware to rhombus
- Add package builder container entry
- Add package source support to pipelines
- Add recv and send frame tuning for streaming
- Add Windows installer signing
- Build init_usrp example for macOS
- Build init_usrp example for Windows
- call powerbtn multiple times to power on
- change gr-ettus ref to master
- devtests: fix knownhost entry
- Enable root privileges for non-DPDK streaming tests
- Fix mgmt_addr=None entry for X310 DPDK case
- Increase devtest job timeout to 90 minutes
- Make Windows installer job self-contained
- Mark devtest as failure on SucceededWithIssues
- Only include rpm files in the Fedora installer artifacts
- Point meta-ettus repo ref to v4.2.0.0
- Run multiple fpgas per job
- set benchmark rate priority to high
- set meta-ettus-dev repo to zeus-ci
- Set n310 and n321 to specific agents
- streaming: flash x310 fpga
- Update branches to UHD-4.2
* cmake
- Add support for fedora rpm versioning
- Cache UHD_VERSION in all cases
- Drop .deb generation via cpack in favour of better tools
* debian
- Change jellyfish to jammy
- Remove hirsute; add jellyfish support
- Resolve lintian issues
* doc
- Fix generation of man pages
- Remove ZBX phase sync documentation
* docs
- DPDK Linux kernel underruns solution
- Update section on radio transport protocols
* e3xx
- change radio_control_impl mutex to be a recursive_mutex
* examples
- Fix rfnoc_replay_samples_from_file
- gpio: output before end of stream
- gpio: Refactor example
* fpga
- Add READMEs describing Lattice and ADI IP sourcing
- Fix first arg in calls to $fatal()
- lib: Add read-only strategy for port B in 2-port RAM
- lib: Update error call for undefined RW mode
- rfnoc: Remove rfnoc_version from target YAML
- x400: Fix AXI/LBUS testbench names
- x400: zbx: Add support for XO3 CPLD variant.
* host/README.md
- Fix links to knowledge base
* images
- Update manifest with latest cpld firmware
* lib
- Add missing include to offload_io_service_client.hpp
- Remove stray file async_msg.hpp
* mpm
- add support for lattice zbx cpld
- Factor out transport API into PeriphManagerBase
- Fix expected CPLD filename for x4xx
- udp: Fix Pylint warnings in UDP-related files
- x4xx: Make get_chdr_link_types() more generic
- xportmgr_udp: Include iface name in info
* n310
- Improve LO source control options for ALL and LO2 cases
* n320
- Fix reading DB serial in applying corrections
- Improve comments regarding low band
- Revert PLL lock time reduction
* python
- Check rfnoc_version in rfnoc_image_builder
- cmake: Detect python virtual environments
* rfnoc
- Add atomic_item_size property to FFT block
- Add LUA based dissector
- fix double conversions
- Fix register_xport_hop_cfg_fns() usage
- Fix vector use in replay_block_control_impl
- Fix warnings in replay_block_control
- Improve comments regarding streaming and mgmt. code
- Improve documentation for chdr_ctrl_endpoint
* tests
- mark test jobs as an overall failure if there is a test failure
- Remove packet_handler_benchmark
- streaming: add option to run streaming tests in dev pipeline
- streaming: add support for B210 DUTs
- streaming: add support for more DUTs
- streaming: don't set master clock rate on x310
- streaming: fix x310 test case values
- streaming: include dual_SFP parameter for all cases
- streaming: mark non-dpdk failures as xfails
- streaming: pass the correct LD_LIBRARY_PATH to pytest
- streaming: select appropriate uhd config file before test runs
- streaming: temporarily mark b210 dropped samples as an xfail
- streaming: use assert instead of pytest.fail for underruns/overruns
* tools
- package_source remove double bracket
* uhd
- change default into option flag in register definition
- fix minor typo when querying tx sensors property tree
- refactor get_all_addrs to remove duplicates
* usrp2
- Remove unused code segments
* utils
- Remove usrp_e3x0_network_mode
- uhd_images_downloader: Increase default image download size limit
- uhd_images_downloader: Print name of file that exceeds limit
- uhd_usrp_probe: Add DB rev to output
- x300_reset: Make py3k-ready
* x300
- Change order of GPIO banks
- Fix invalid GPIO source bank error message
* zbx
- Remove stray include
-- Ettus Research <packages@ettus.com> Wed, 20 Jul 2022 05:33:58 -0800
uhd (4.2.0.0-0ubuntu1) ubuntu_release; urgency=low
* b200
- Re-sync times
- Fix overflow handling
- Move the B200 radio control core into usrp/b200/
* cal
- Use safe version of set_thread_priority()
- Fix handling of discontinuities in power calibration data
* chdr
- Rename var max_size_bytes to avoid confusion
* ci
- Weekly builds for UHD-4.2 docker images
- Update builds to macOS 12 Monterey
- Update commit vcpkg and CMake version
- Set continue on error and reduce timeout to 60
- Remove obsolete x4xx pipelines
- Upload devtest logs as artifact
- Propagate downloader errors and lower timeout
- Enable ctest on macOS builds
- Flash fpga on x410 ATS runs
- Add mpm folder to triggers
- Change yaml dependency to ruamel
- Add support for Ubuntu 22.04
- Remove Fedora 33 and add Fedora 35
- Add libuhd python dependencies to macOS
- Add x410 test to mono pipeline
- Enable building of init_usrp
- Make uhdSrcDir directly reference Build.SourcesDirectory
- Build gnuradio and gr-ettus
- Add gnuradio deps to images
- Generate installed binaries for downstream use
- Add displayNames to parameters
- Add embedded builds to uhd mono pipeline
- Separate pipeline builds for different os
- Refactor dockerOSName to buildOSName
- Build on macOS
- Device wait to redlock scope for Vivado close
- Add Fedora 34 and remove Fedora 32
- rebuild docker images weekly
- Refactor installers and add Windows support
- Add gnuradio gr-ettus to oe builds
- Update template to use checkout_meta_ettus
- Add custom boost version support
- Remove documentation-only changes from pipeline runs
- Enable batch CI
- Split CI and PR pipelines for mono pipeline
- Enable custom CXX flags, enable -Werror
- Let make keep building upon failure
- Add clang as a compiler to all Fedora and Ubuntu containers
- Add CLA assistant
* cmake
- mpm: Skip installing binaries for SIM
- doxygen: Make MATHJAX_RELPATH configurable via CMake
- ncurses: fix building with split tinfo
- Remove libatomic check on macOS
- Added libatomic check for boost/lockfree/queue.hpp
- uhdboost: Fix check for UHD_BOOST_REQUIRED being set
- Replace distutils.sysconfig with sysconfig
- Replace distutils with CMake for version checks
- Set debug to -Og for Clang builds
- tests: Conditionally compile tests for X400
- Use LooseVersion to ensure correct version comparisons
- Fix rfnoc-example (CMake paths)
- Fix issues with static builds and CMRC
- Replace CMAKE_{SOURCE,BINARY}_DIR with UHD_*_DIR
- tests: Add build-python path to PYTHONPATH
- Add check for libatomic linking requirement
- Remove duplicate entry in LIBUHD_PYTHON_GEN_SOURCE
- Fix VS names and use relative for images
- remove redundant include
- Correctly set and unset any CMAKE_REQUIRED variables
- Fix finding PkgConfig to work robustly (without CMake warnings)
* config
- Fix clang fallthrough syntax
* conversion
- Saturate transmit IQ levels on NEON architectures.
* convert
- Make narrowing conversions saturate
- Add benchmarking abilities
- Minor cleanup
* core
- Remove boost::math in favor of std cmath
* dbsrx
- Fix issue with loop variable
* debian
- Update version number to 4.2.0
- Update control and package building
* debs
- Update upload_debs script
* deps
- rpclib: Replace distutils.dir_util with shutil
* devtest
- Clarify data type in multi_usrp_test::send_waveform()
- Add receive stability test to B2xx devtest
- Add receive stability test
* dissectors
- Fix whitespace formatting in CMake files
- Fix inclusion of glib.h and Python version
* docs
- multi_usrp: Clarify GPIO source bank meaning
- x4xx: Document configuring eth0 static IP
- n310: Add Filter API section
- e31x: Update information on GPIO pin header
- Add 100GigE documentation
- Move X4x0 GPIO API to be subpage
- Update E320 docs
- x4xx: Remove redundant GPIO section
- rfnoc: Add doxygen tag for missing parameter
- Improve table on 'identification'
- Update instructions for changing hostname
- Update sfp port config location
- Update manual for new X410 default targets
- Fix Doxygen warnings
- Fix reference to RFNoC documentation
- rdtesting: Remove invalid rate configuration
- stream_args: Clarify usage of stream_args_t::channels
- n3xx: Add info on customizable band edges and gain profiles
- x4xx: Add new FPGA image descriptions
- Improve documentation for replay block
- Remove superfluous stylesheet
- x310: Remove reference to ORC
- Update n3xx tuning notes
- Remove full path names from Doxygen generation
- Add shim Sphinx config for readthedocs
- Improve page on RFNoC block properties
- Fix page on GPIO
- Fix MathJax formulae rendering
- Amend page on RFNoC properties
- Remove bmaptool instructions for writing filesystems
- Remove obsolete man pages
- Update DPDK documentation
- Improve documentation for properties and -propagation
- Several minor manual improvements
- x410: Document GPIO API and capabilities
- Collect all RFNoC block controllers in a module in the manual
- Align dependencies and bump deb package versions
- Clarify set/get_gpio_attr() and GPIO banks
- Fix GPIO documentation example
- x410: Fix info on loading SD card images with bmaptool
- Improve docs for rx_streamer::recv() on overruns
- sync: Update page on synchronization
- Fix typo in ZBX Block Diagram
- usrp_x4xx: improve filesystem update instructions
- x4xx: Update information on CPLD updating
* dpdk
- Add support for DPDK 18.11 API
- Correct MTU warning message
- Support new MTU discovery
- Disable warnings for using an experimental feature
- Upgrade to DPDK 19.11 API
* e31x/e320
- Amend LO-locked sensor names
* e320
- mpm: Remove monitor thread
* e3xx
- Fix frequency querying
- Remove unused constant
* examples
- gpio: Separate bank and port arguments
- Fix channel indexing when reading USRP power
- Fix gain testbench name
- Add replay_capture.py
- benchmark_rate improvements
- replay: Improve rfnoc_replay_samples_from_file
- Support multiple streamers in benchmark_rate
- Fix tx_bursts bandwidth/freq/gain reporting
- Improve rfnoc_rx_to_file
- Use cmul for gain block in-tree IP example
- Test all variants in gain testbench
- Make IQ order clear in gain RFNoC block
- Improve txrx_loopback_to_file (late recv, Boost, timing)
- Show how to use in-tree Verilog header
- Add x400/x410 target to RFNoC example
* fgpa
- rfnoc: Set Replay memory transactions to 2 KiB
* firmware
- Remove N230 firmware
* fpga
- x400: Increase replay SEP buffer sizes
- x400: Add timed commands support for all radio ctrlport endpoints
- Replay block version 1.1
- Update all RFNoC images
- ci: Add X4_400 to CI targets default list
- n3xx: Add missing BIST image core headers
- Use PROTOVER and CHDR_W from RFNoC image builder
- n3xx: Fix clock frequency comments
- e31x: Update DRAM IP simulation
- e31x: Fix DRAM traffic gen IP name
- ci: Schedule weekly FPGA pipeline run
- ci: Improve IP build caching
- ci: Add stages-based pipeline
- ci: Ignore objects in hwtools
- tools: Add CG_400 image to X410 binaries package
- x400: Add x410_400_128_rfnoc_image_core
- rfnoc: Fix PPS edge detection
- rfnoc: Make Replay packet length independent of burst size
- Add SPDX license identifier
- x400: Cleanup FPGA Makefile
- x400: Add support for DRAM with 400 MHz BW
- x400: Change AXI XB for DRAM to 512-bit
- rfnoc: Fix strobe probability in radio simulator
- rfnoc: Regenerate noc_shells
- x400: Set replay SEP buffers to twice MTU
- Add SPDX license identifier
- e320: Add DRAM ports
- n3xx: Fix DRAM FIFO address alignment
- rfnoc: Change AWIDTH default for axi_ram_fifo
- e31x: Add DRAM support
- rfnoc: Add BLANK_OUTPUT to FIR filter block's parameters
- x400: Add DRAM enable macro
- b2xx: Generate utilization report files
- x400: zbx: cpld: Bump ZBX regmap copyright
- x400: cpld: Bump CMI wrapper copyright
- ci: Increase PR pipeline timeout
- x400: Bump minor version
- x400: Update rfnoc_image_core files
- x400: Add Replay to 100 and 200 MHz images
- x400: Add DRAM support
- x400: Set DRAM speed to 2.0 GT/s
- x400: Add axi_inter_4x64_512_bd IP
- x400: Add axi_inter_2x128_512_bd IP
- docs: Add B205mini FPGA info
- n3xx: rh: cpld: Refactor CPLD build process
- Remove noc_shell_regs.vh and sim_rfnoc_lib.svh
- x400: cpld: Bump copyright
- x400: Bump copyright
- x400: Expand PS GPIO port for DIO control
- x400: Add GPIO control via ATR and DB state
- x400: Connect Radio Blocks to DIO
- tools: Fix adding directories for HDL source
- hls: Add version to generated HLS IP
- x400: Fix rfnoc_image_core.vh path
- e320: Connect CTRL_IN pins to FPGA
- e320: Remove copy/paste from N310 code
- x300: Fix time register readback
- usrp2: update build tools to use python3
- tools: Update Vivado scripts to use python3
- x300: OR ATR signals going into db_control
- x400: cpld: Add manufacturing support
- x400: Refactor CPLDs build process
- tools: Add Quartus build utilities
- Add ability to get time from Radio block
- rfnoc: Add RFNoC CHDR resize module
- rfnoc: Add CHDR management util functions
- lib: Clean up axi_mux
- rfnoc: Add labels to axi_switch generate blocks
- rfnoc: Add labels to chdr_mgmt_pkt_handler
- rfnoc: Add documentation to chdr_xb_routing_table
- Shorten line length for Launchpad linter
- x300: Update synchronizer constraint
- n3xx: Update synchronizer constraint
- lib: Update example constraint in synchronizer
- Update help message for setupenv.sh
- Remove stale references to UHD_FPGA_DIR
- tools: Add UHD_FPGA_DIR definition to synthesis
- Set default part for sim in setupenv.sh
- Fix Xilinx bitfile parser for Python 3
- Re-order error and data packets
- Fix sc16 to sc12 converter
- rfnoc: Fix EOB loss in DUC
- sim: Add PkgComplex, PkgMath, and PkgRandom
- lib: Clean up and document lib files
- x400: Remove stale information in register map
- ci: Add testbench pipeline
* github
- Amend PR template with a checkbox for compat numbers
* host
- devtest: Allow getting mgmt_addr in tests
- devtest: Add GPIO tests for reading back ATR settings
- x410: Emulate GPIO classic ATR mode using new mode
- x410: Cache GPIO source in mb_controller
- Add power_reference_iface::sptr declaration
- Create meta_range_t::as_monotonic
- test: Add UHD_UNITTEST_LOG_LEVEL override
- test: Add GPIO DDR register to x4xx mock
- Throw exception when accessing properties with incorrect type
- Minor cleanups in property_tree code
- x4xx: Fix some warnings on mac OS
- zbx: Expose tuning table on property tree
- x4xx: gpio: Properly unmap FPGA GPIO values
- fix build with DPDK v21.11 LTS
- Implement nameless_gain_mixin
- Make get_mb_controller public
- tests: Make x4xx unit test support GPIO
- multi_usrp: Merge set_tx_subdev_spec and set_rx_subdev_spec
- Add divider constructor to spi_config_t
- rf_control: Add internal antenna API abstraction.
- tests: Add unit test for ZBX antenna API
- Make core_iface inheritence virtual
- Implement operator<< for data_reader_t
- docs: Fix incorrect usage in GPIO docs
- Add char* overload for device_addr_t
- Make radio_control constants an enum
- Fix typos and small things
- Add ability to get time from Radio block
- python: Add gpio_voltage python API
- Add gpio_voltage discoverable feature
- Add RPC calls for GPIO voltage
- python: Return mb_controller with reference_internal
- x4xx: Implement GPIO API
- Add GPIO functions to MPM RPC shim
- gpio: Create gpio_atr_offsets to store GPIO registers
- Add static_assert to prevent meta_range_t(0,0)
* ic_reg_maps
- Generate save state read functions
* images
- Remove references to N230
- Add utilization report files to B2xx image files
- Revert x4xx manifest and FPGA compat update
- Update N32x CPLD manifest
- Make get_images_dir return absolute path
- Clear out code from days of yore
- Add the utilization report for X410 images (X4_200)
- Update image packager script for Python 3
- Update manifest
* lib
- Set dynamic_lookup and flat_namespace
- Make simple_claimer atomic
- SSPH: Fix comment for convert_to_in_buff()
- Remove superfluous includes of udp_zero_copy.hpp
- Remove all remaining usage of boost::numeric::bounds<>
- transport: Mark typecast as intended
- transport: Initialize _hshake_args_server
- rfnoc: Make implicit typecasts explicit
- rfnoc: Change enum node_type to enum class
- Add various missing includes
* libusb
- Remove unused context variable
* log
- Add DPDK version to system info
* math
- fp_compare: Adapt fp_compare_epsilon API to actual use
* max287x
- Fix key in table of freq ranges
* mpm
- ad937x: Fix tuning code
- x4xx: Fix clock/time source API
- e3xx: Fix get_sync_sources() API
- PeriphManagerBase: List all sync-related methods
- Make default clock/time source values state-less
- e3xx: Simplify code referring to self.dboards
- speed up reading gps mboard sensors
- n3xx: Recommend reboot USRP after BIST
- x4xx: Remove GPIO classic mode register
- Factor out common code between E31x_db and Neon classes
- e3xx: Fix Pylint warnings in periph_mgr classes
- fix ref_locked sensor on n320
- rh: Minor linter cleanup
- Use receiving socket for sending response
- eeprom: Fix default values in EEPROM utilities
- xportmgr_udp: Match DNAT arguments to manpage
- eeprom: Improve E320 and N3x0 EEPROM code/comments
- cmake: Remove installation of non-relevant EEPROM tools
- x4xx: Add function to map from gpio src list indices
- Add device name to discovery process
- x4xx: Update FPGA minor compat number
- Add x4xx DRAM BIST
- Fix units for DRAM BIST
- Remove further references to rfnoc_num_blocks
- x4xx: Align get/set_gpio_src mappings with HDMI pinouts
- Demote WARNING on minor compat mismatch to DEBUG
- X410: Set correct tuning word
- x410: Fix docstrings related to GPS sensors
- e320/e31x: Fix lo-lock sensors
- x4xx: Add log message for older DIO boards
- x4xx: Move DioControl into its own module
- x4xx: Add checks before accessing self.dio_control
- x4xx: Remove superfluous import
- x4xx: update mboard_max_rev
- x4xx: Allow retrieving external power state
- x4xx: Allow GPIO0 and GPIO1 as port names
- x4xx: add DIO GPIO API configuration methods
- Fix handling of rfic_digital_loopback argument
- rfdc: Tear down RFDC on teardown
- x4xx: update mboard_max_rev
- add X410 support for 250e6 master clock rate
- Expose motherboard regs for debugging
- Skip DTS compatibility check if DTS is not being updated.
- zbx: Fix revision compat check
- Update usrp_update_fs to support X410
- max10_cpld_flash_ctrl: improve programming log
* mpmd
- Add MTU plausibility check
- Increase UHD-side MTU cap for 10 GbE and 1 GbE
- Add discoverable feature for trig i/o mode
* multi_usrp_rfnoc
- Set assignment instead of equality
- Add TX buffering using Replay
- Reduce latency of get_time_now()
* n310
- Add Filter API to n310
- Add frontend bandwidth control
- cpld: Get and set TX ATR bits
- Deactivate frontend components on radio shutdown
* n320
- Fix issue that occasionally prevents lo_locked upon first set_freq
- Reduce PLL lock time
* n3x0/e3x0
- Remove reference to "master FP-GPIO radio"
* n3xx
- Add support for rev 10
- Fix White Rabbit
* python
- rfnoc: Add new replay block APIs to Python API
- Add __init__ to uhd.utils
- rfnoc: Add connect_through_blocks() and get_block_chain()
- Read number of ports from grc file in image builder
- Fix RuntimeError: dictionary changed size during iteration
- rfnoc: Add get_property bindings
- Use setup from setuptools
- multi_usrp: Add set_rx_spp()
- multi_usrp: Fix issues in send_waveform()
- multi_usrp: Fix issues with recv_num_samps()
- Fix dropped-sample calculation in benchmark_rate.py
- multi_usrp: Fix overloaded function definition
- Add new method bindings to noc_block_base
- rfnoc: Change reference type for noc_block_base export
* radio
- Improve log messages for non-implemented corrections
* responder
- Fix printw function arguments
* rfnoc
- Update image builder to check for deprecated blocks
- Add filter_node python bindings
- Modify prop. propagation algorithm (back-edge resolution)
- graph: Allow property forwarding on back-edges
- Fix test_timed_commands for RFNoC devices
- Remove redundant RFNoC block descriptions
- Update device port names in image core YAML
- Update image builder to check for deprecated port names
- Make RFNoC device port names consistent
- replay: Add ability to capture and read async info
- fir filter: Add support for multiple channels to block controller
- Remove UHD3-API usages
- radio: Explicitly set MTU forwarding policy to DROP
- Fix block buffer sizes referring to MTU
- Refactor ctrlport_endpoint; fix MT issues
- window: Set window size register after loading coefficients
- replay: Add atomic item size property
- replay: Add action handler for stream commands
- graph_utils: Add ability to declare back-edges
- Remove references to nocscript from YAML files
- Fix spelling in property resolution error message
- Expose buffer parameters for DRAM FIFO block
- Rename and enlarge axi4_mm IO signature
- Update the MTU forwarding property for some blocks
- Set the default MTU forwarding policy to ONE_TO_ONE.
- Add post_init() method to noc_block_base
- Fix _set_subdev_spec() helper function
- set UHD_API_HEADER on property_t
- Cache and re-use host endpoints
- Ignore errors in ctrlport response packets if ACKs not wanted
- Always clear response queue in ctrlport_endpoint
- Fix DSP frequency accuracy
- Add atomic item size property for RFNoC blocks
- transport: Check if streamers are connected in send() and recv()
- ddc/duc: Improve variable name for _set_freq()
- radio: Fix comment in radio_control_impl
- graph: make topology failure more descriptive
- Fix block_id::get_tree_root()
- Fix back-edge consistency check
- Add ops pending to management op
- Fix noc_shell direction comments
- Enable drop counter on chdr_ctrl_endpoint
- Change default block behaviour
- Clarify usage of MTU vs. max payload size, remove DEFAULT_SPP
- replay block: Disable prop and action propagation
- Add more comments to rfnoc_graph
- Fix issue in uhd::rfnoc::connect_through_blocks()
- radio: Fix async message handling channel checks
- mgmt_portal: Fix order of validity checks
- Add CHDR width to make args
- Make chdr_w_to_bits() C++11-compatible
- blocks: Minor cleanup (whitespace, typos)
- Remove cruft from UHD 3 (constants)
- mgmt_portal: Remove two unused variables
- Add vivado-path to rfnoc_image_builder
- ddc: Improve unit tests and documentation
- duc: Fix frequency range for DUC block
- duc: Remove stale references to CORDIC
- Allow find_blocks to search by device number or block count.
- Fix block id check to allow underscore
- Remove obsolete constant
* rh
- Fix auto DC-offset correction and auto-IQ balance APIs
* siggen
- Fix direction of rotation
* sim
- Update chdr_16sc_to_sc12 testbench
* systemd
- Enable tx flow control automatically
* tests
- Add filesystem flashing to streaming tests
- x410: Add GPIO tests to X410 devtest
- add support for new benchmark_rate args
- Fix potential resource leak
- Build uhd_test library as static when `-DBUILD_SHARED_LIBS=ON`
- rfnoc: Add another loop graph test
- Streaming tests setup
- Enable automated streaming tests on X410
- Add X410 100GbE tests
- rfnoc: Amend mock nodes with action support
- Add complex include to resolve build
- Use new args for x410 streaming tests
- Apply clang-format to convert_test
- Fix converter benchmark disable on Boost <1.68
- Atomicize counters in benchmark_rate
- Add saturating test cases
- Add conversion benchmarking tests
- Force converter tests to be run with all available prios
- Modularize x4xx_radio_mock to use it in other tests
- Disable x4xx_radio_block_test on macOS
- Add replay-back-edge test
- Remove non-functional DPDK test
- Add default length for automated streaming tests
- Add automated streaming tests
- Add streaming setup script for performance enhancements
- Remove skip_dram from streaming performance test script
- Fix rfnoc_graph mock nodes stop-stream command
- Use reference type to prevent copy
- Fix check in link_test
- Add recv(0) case to rx_streamer_test
- Add missing header, required by some compilers
* tools
- Fixes to uhd_phase_alignment.py
- uhd_ubuntu_deb: Require --buildpath
- Fix control packet byte enable in CHDR dissector
- Add general purpose tool for USRP configuration
- Add check for SEP with ctrl enabled to rfnoc_image_builder
- Add missing fields to CHDR dissector
- Fix rfnoc dissector build
* uhd
- Update MPM compat minor
- Replay block version 1.1
- Fix compiler macro ordering
- Fix negligible copy/paste typos in rhodium radio control
- Harmonize fuzzy frequency comparisons
- Remove FSRU-related files
- rfnoc: Let connect_through_blocks() return edge list
- Expose uhd::dict and fs_path with UHD_API_HEADER
- Demote WARNING on minor compat mismatch to DEBUG
- Fix non-standard function name macros
- Update git://github.com references to https
- Allow pass raw IQ data array to tone generator
- Remove tcp_zero_copy
- nsis: Remove broken shortcuts in Windows installer
- Fix RFNoC-capable detection in uhd_usrp_probe
- Remove superfluous boost/bind.hpp includes
- Add support for max10 variants
- Update manifest for x410 cpld
- Update num_recv_frames calculation for ctrl links
- Remove spurious template from property dtor
- Fix spelling errors
- math: Replace wrap-frequency math with a single function
- math: Add a sign() function
- Replace Boost mutexes and locks with standard options
- zbx: Prevent TX antenna config from disrupting RX
- mpm: Expose filesystem version information on MPM tree
- transport: Avoid exceptions in disconnect_receiver()
- Remove Boost version checks for Boost 1.61
- streamer: Restore original recv(0) semantics
- Fix usage of std::abs with template parameters
- Update version, manifest, and changelogs
- Replace boost::thread::id with std::thread::id
* utils
- Check install-prefix for images
- string: Add split string utility function
- Add comment re overclocking
- Modify set-tx-gain procedure to update gain in one go
- Fix comment in noc_shell Mako template
- Add space to rfnoc_image_builder help
- Get signal above noise floor when finding optimal gain
* x300
- Fix LED configuration for TwinRX
- Remove usage of CHDR_MAX_LEN_HDR
- Fix error message for wrong reference frequency
- Remove unused variables in x300_eth_mgr.cpp
- Fix MAX_RATE_1GIGE value
- Fix sfpp_io_core tuser width
- Initialize struct variable before using it
* x410
- Correct 100GbE link speed
* x4xx_bist
- Use get_mpm_client in gpio bist
-- Ettus Research <packages@ettus.com> Tue, 19 Apr 2022 13:55:00 -0800
uhd (4.1.0.1-0ubuntu1) ubuntu_release; urgency=low
* cmake
- remove redundant include
- correctly set and unset any CMAKE_REQUIRED variables
- fix finding PkgConfig to work robustly (without CMake warnings)
* core
- remove boost::math in favor of std cmath
* docs
- x4xx: Update information on CPLD updating
- usrp_x4xx: improve filesystem update instructions
* mpm
- zbx: Fix revision compat check
- Update usrp_update_fs to support X410
- max10_cpld_flash_ctrl: improve programming log
- Skip DTS compatibility check if DTS is not being updated
-- Ettus Research <packages@ettus.com> Mon, 12 Jul 2021 04:29:39 -0800
uhd (4.1.0.0-0ubuntu1) ubuntu_release; urgency=low
* adf535x
- Change freq_resolution to mod2
* b200
- handle overruns during continuous streaming
* cal
- ensure proper range handling
- Remove silent capture of TypeError
- Add X410 internal antenna names to invalid antenna list
- add more error number for ADC overload
- make 'calibrate all channels' default for --channels argument
- Add support for X410
- Add min_freq and max_freq attributes to USRPCalibratorBase
- Fix minor issues in the calibration utilities
- sync log output between file system and resource data
* chdr
- Fix u64_to_host vs. u64_from_host usage
* ci
- Add trace builds to pipeline
- Add deb build support for ubuntu 1804/2004
- Update docker images for Ubuntu with pbuilder
- Support for x3xx devtest on rhombus
- Install vc_buildtools instead of vc_community
- Build uhd with Pipelines
- Linux and Windows uhd build docker images
- Hardware pytests / devtests in AzDO for n310
- Add stub for python hardware tests
* cmake
- Add RegMaps build component to MPM
- fix cut-and-paste typo to fix SIM APPLE build
* convert
- Remove unused variables
* dboard
- magnesium: Update Rx IF Frequency Value
* dboard_iface
- Fix sleep()
- Modify sleep() function
* debian
- Update supported Ubuntu releases
- Update Python3 dependencies
* debug_dboard
- Fix compiler warning
* deps
- rpclib: Fix issue on socket closing
* devtest
- benchmark_rate: Add support for rx and tx only tests
- Make Python tests their own type of devtest
- Lower rate for rx_all_chans_fast test
- Allow extra device arguments when running devtests
- Optionally generate XML report when running devtests
* docs
- usrp_x4xx: add network leds behavior to docs
- devices: remove child page relation to individual dboards
- zbx: link docs to rf specifications
- zbx: address review observations in docs
- usrp_x4xx: address review observations in docs
- Fix typos
- Fix python3-ruamel.yaml name on RPM based OS
- zbx: update cpld source code location
- usrp_x4xx: apply minor corrections in docs
- zbx: improve cpld update docs
- usrp_x4xx: improve mb cpld update docs
- Fix missing section header in power level controls page
- Fix typo in mender section
- Add N320 frontend correction section
- Use Mathjax for equation rendering
- Remove reference to Python six
- mpm: correct ? notation to display help
- Update Python3 dependencies
- Fix sensor names for N3xx boards
* duc
- Fix incorrect DDS_GAIN
* examples
- Fix underrun/seq error reporting in benchmark_rate.py
- Add min dynamic range limit to ascii art DFT example
- Add IP to OOT RFNoC gain example
- Remove unused arguments for rfnoc_radio_loopback
- Fix PPS option in rfnoc_radio_loopback
- Fix --random option in benchmark_rate
- Fix icores example to match current RFNoC specs
* experts
- Change coercion policy for regular prop nodes
* fpga
- x400: Fix x4xx_qsfp_wrapper testbench
- sim: Check for empty packet in clear_unused_bytes
- Update testbenches to work in ModelSim
- x400: Add makefiles for RF testbenches
- tools: Detect assertions in ModelSim simulation
- tools: Put SIM_SRCS at end of compile order
- tools: Support new FPGA types in viv_simulator.mak
- tools: Fix python2 reference in viv_ip_builder.mak
- tools: Add modelsim.excludes
- tools: Add modelsim.ini to ModelSim calls
- tools: Add features to run_testbenches.py
- tools: Add ip target to simulation makefiles
- tools: Add X410 support for image packaging
- ci: Add build definitions for FPGA CI
- x400: zbx: Add support for ZBX CPLD
- x400: cpld: Add support for X410 motherboard CPLD
- x400: Add support for X410 motherboard FPGA
- sim: Add slave_idle() to PkgAxiStreamBfm.sv
- lib: Update register comments in eth_regs.vh
- Update rfnoc_image_core for all targets
- Update recommended HDL header guideline
- tools: Fix part selection in setupenv
- Change RFNoC YAML version numbers to strings
- lib: Add modports to SV AXI-Stream blocks
- lib: Add time_increment port to timekeeper
- lib: Pipeline ctrlport_timer
- lib: Add clock domain comments to interfaces
- lib: Add 2 to 1 gearbox module
- lib: Add PHASE parameter to sim_clk_gen
- lib: Add AXI4 (full) interface
- lib: add pause support to ethernet xport
- lib: Add eth_ipv4_internal
- lib: Add zynquplus family to axi_bitq
- tools: Add ability to run commands before route
- tools: Add ability to patch IP during generation
- tools: Add support for RFSoC
- lib: Minor cleanup of axi_lite.vh
- rfnoc: Add ability to disable output flow control
- lib: Add rx_front_end_gen3 testbench
- lib: Update round_sd to eliminate X from simulation
- lib: Fix simulation of axi_fir_filter
- docs: Improve documentation of rx_frontend_gen3
- lib: Fix DDS_SIN_COS_LUT outputs in makefile
- dsp: Fix formatting of rx_dcoffset and add docs
- Remove Python2 support from build system
- e320: Improve timing on LVDS interface
- lib: add glitch free mux module
- e31x: Add OOT sources to Makefile.e31x.inc
- lib: Fix axis_strm_monitor parameters
- lib: Fix small packets stuck in 10 GbE TX
- lib: Fix 10 GbE cut-through mode
- lib: add generic to disable bitq engine tri-stating
* graph
- Restore default resolver callback at node removal
- Serialize all graph-related functions
- Re-fetch dst_node descriptor after src_node potential removal
* host
- utils: Print block ID for RFNoC dboards
- Update code base using clang-tidy
- Update code base using clang-tidy
* ic_reg_map
- Allow registers to be arrays
- Remove SPCC core reg map
- Add SPCC reg map
- Add common regmap template for Python
* images
- Update manifest
- Add X410 series FPGA images
- Update manifest
- Update B2xx firmware
* installers
- Refactor deb script and build
- Resolve ubuntu linter issue
* lib
- deps: Upgrade vendor version of Pybind11 to 2.6.1
- Fix misssing include in e3xx_radio_control_impl
- rpc: Add virtual dtor to RPC iface base class
- Remove move-on-return for chdr_packet_writer
- Fix unresolved cleanup conflict (sorry!)
- deps: Ignore more warnings in our versions of rpclib, pybind11
- Use const-ref in for loops instead of const-copy
- Add some virtual dtors
- Fix warnings related to unnecessary lambda captures
- lmx2592: Comment out some unused constants
- Remove unused constants
- Fix missing includes in rpc.hpp
- Disable non pcie types in find with resource
- graph_utils: Error on single SEP edge
- graph_utils: Fix formatting and compiler warnings
* lmx2572
- Fix compiler warning
* mg
- Fix slot_idx reference
- Remove unused private attribute from ad9371_iface
* mpm
- Move cal freeze defaults to x4xx
- Restore rfdc nco frequency after setting sync source
- tests: Add lib/ to library load path
- install cpld update scripts in runtime dir
- x4xx_bist: run spi_flash tests on both DBs
- max10_cpld_flash_ctrl: only reprogram cpld if necessary
- Add chip driver for LMK05318 PLL
- gpsd_iface: Make GPGGA generation more robust
- sys_utils: add libgpiod-based Gpio helper
- Remove helper classes from RPC API
- systemd: Add UseDomains=true to eth0.network
- Fix MD5 hashing of opkg status
- check-filesystem: liberalize version check
- Add unit tests for EEPROM readers
- Add symbol name based EEPROM read, cleanup EEPROM handling
- Add tlv_eeprom
- gpsd_iface: Refactor class
- Remove unnecessary imports
- Add FPGA type to the info returned during discovery
- Remove unused argument info
- lmk04832: Clean up driver
- PeriphManagerBase: Add _add_public_methods()
- Fix minor log formatting issue
- db_flash: Check mount status before mounting
- sysutils: mount: Check both mount point and data path
- mount: Demote already-mounted warning
- periph_mgr: Demote "no SPI nodes" warning
- mg: periphs: Read lowband lo lock status from cpld
- Remove references to rfnoc_num_blocks
- Remove logging for mmap_regs_iface
- periph manager: Fix get_mb_eeprom() return value formatting
- rpc: don't expose reset_mgr call via RPC
- Add i2c_dev lookup using sys_name
- rpc: Use contextmanager for claim timeouts
- add helper for symbol lookup
- Implement 32 bit register interface with SPI
- Add DboardIface for MB DB driver control
- Add an LMK03328 base chip driver
- Add an LMK04832 base chip driver
- prevent dead lock in timer kill during unclaim
- Add support to safely reset peripheral manager from uhd
- Create Mock classes for unit testing
- Deduplicate dboard eeprom handling
- Added DBFlash class
- Added Mount class
- systemd: create udev rules files for each MPM_DEVICE
- filesystem_status: tolerate absence of mender
- Implement get_sync_source and get_sync_sources.
- rpc server: Fix unclaim sequence
- rpc server: Remove Python2 compat code
- rpc_server: fix get_log_buf for MPM Shell
- Fix issue with check-filesystem test execution
- Add dependency on pyusrp_periphs to MPM
- Cleanup rpc_server.py
- Use filesystem_status from sys_utils
- Added check-filesystem utility
- Add 'XQ' image as valid when using sfp0 as time_source
* mpmd
- Support four links
- Skip find if "resource" key is specified
- Add support to delay and trigger fpga/dts load after update
- Export RPC token and mb_args to the property tree
- Reduce max frame size for 10 GbE
* msgpack/predef
- Add riscV support
* multi_usrp
- Factor out make_overall_tune_range() and fix limits
- Fix typos in streamer destruction callback
- Fix streamer destruction callback
- Add get_mb_controller() API call
- Relax LO set API strictness
* multi_usrp_rfnoc
- Fix get_device()->get_tree()
- Serialize make_rfnoc_device
* n310
- Fix calculation of LO freq w/ext LO for RX
* n310/n300
- Allow gain coercion
* n320
- Add correction APIs to radio_control object
- Fix calibrations
- Fix IQ mapping and frontend corrections
- Fix available antennas
- Fix address for RX frontend control
* package
- Fix Python components
* python
- Add graceful exit of claim loop on SIGTERM
- Add rfnoc_image_core.vh generation
- Update RFNoC image builder to use CHDR_W parameter
- Add find() to the Python API
- multi_usrp: Add get_mpm_client() API call
- Add mpmtools module
- Make TuneRequest implicitly convertible from double
- multi_usrp: Let get_tree() return a raw pointer
- Improve access to device_addr_t
- multi_usrp: Fix get_radio_control()
- Clean up image builder generated code
- Add access to the property_tree from Python
- Move multi_usrp_python to its own module
* rfnoc
- Fix post action behavior of nodes
- Add image_core_name option to rfnoc_image_builder
- Fix MTU prop resolver refactoring
- noc_block_base: Throw if set_mtu_forwarding_policy() called multiply
- noc_block_base: Refactor MTU prop resolver
- Fix graph connect timeout error
- Add option to disable flow control on rx streaming
- radio: Add getter for SPC value
- tx_streamer: Remove EOV size attribute
- Update radio to support multiple SPC
- Make NIPC match CHDR width by default for NSS block
- Add accessors for item width and nipc for NSS
- Fix remote stream buffer format
- Fix time conversion in ctrlport_endpoint sleep method
- Handle receive of 0 samples
- Demoted zero sample error to warning
- Add Makefile.srcs to switchboard.yml
- Fix thread unsafe accesses in ctrlport
- Alphabetize sections in CMakeLists.txt
- Add add'l header files to CMakeLists.txt
* rh
- Remove unused constant
- cpld control: Comment out gain table address
- Remove use of magic number of identify duration
* rpclib
- Fix warning on ARM build
* sim
- Fix CHDR header stringification
- Ignore mender artifact file on sim devices
- Check for unit test prereqs and disable if unsatisfied
- Move SelectableQueue and SendWrapper
- Support Out of Tree Sources and Sinks
- Implement Sim > UHD Flow Control
- Move Hardware Specific to Config File
- Implement UHD > Simulator Flow Control
- Support Timed Streams
- Integrate simulator into UHD
- Support Configuration Files
- Support Streaming
- Clarify Naming of Streams
- Simulator CHDR Parsing and RFNoC Graph
- Embed MPM into libpyuhd
- Add Daughterboard Methods
- Lay Groundwork for Simulator
* test
- Add DPDK option for max streaming rate tests
* tests
- Make python_api_test.py always explicitly call Python
- Add MTU forwarding policy restriction unit test
- Update multi_usrp_test.py
- Update device identifiers for N310
- Fix warnings for rf_control_gain_profile_test
- Remove unused constants
- Add lib/ to LD_LIBRARY_PATH for pytests
- Add UT for node removal prop resol'n restoration
- mock_block: Allow mock blocks to carry MB controllers
* tlv_eeprom
- Add eeprom-set-autoboot helper script
* tools
- Add bool-property-set ability to rx_settling_time.py
- Rfnoc dissectors are now built and named based on CHDR width
- Update rfnoc dissector to support multiple CHDR widths.
* transport
- Fix compiler warning in nirio_link
- Set mtu to 9000 for all 10GbE use cases
* twinrx
- Remove frontend filter
- Fix missing default copy ctor
- Fix LO lock failure
- Spur cleanup
* types
- Add mm_iface structs
* uhd
- Use chain's block channel to get power ref keys
- Add missing channel parameter when reading power ref keys
- Add callback for setting sync_sources
- Update version
- x400: Honor ENABLE_X400 component flag
- ci: Add test definition for UHD CI
- Add support for the USRP X410
- Reword log.hpp documentation
- Remove references to device3
- Update all headers for setters on multi_usrp re coerce/throw
- Fix typo in has_tx_power_reference
- Enable vcpkg support on windows
- Fix radio_control-related method constness
- gitignore .DS_Store for our macOS friends
- Lambda capture the node instead of vert desc
- Check for overflow after timeout buff read
- Split radio_control into rf_control interfaces
- Revert "Check property type at access..."
- clang: Fix fallthrough attribute
- Throw error if edge list is empty
- clang-format device impl
- Replace default initializers with named ones
* uhd_image_loader
- Consume .lvbitx files
* uhd_images_downloader
- Add environment variable for http auth
- Remove unused default_no parameter
* usrp
- Remove old header file declarations
* usrp2
- Use explicit template type for std::min<T>
- Replace boost::math::iround/math::sign with std::lround
- Apply minor cleanups to Boost usage in usrp2
- Fix Boost headers
* usrprio
- catch exceptions if rpc data read fails
* utils
- Improve cal TX threads
- Remove unused constant from b2xx_fx3_utils
- check config file before finding devices for image loader
- Fix GUI argument in rfnoc_image_builder
- Improve NMEA string output
- Set rfnoc_create_verilog.py as executable
* x300
- Reduce phase noise for 184.32 MHz MCR
* x3xx
- Improve image loader
* x400
- sim: Move testbenches to sim folder
* zbx
- Fix clang compiler warnings
- Fix compilation on clang-10
-- Ettus Research <packages@ettus.com> Fri, 25 Jun 2021 01:13:18 -0800
uhd (4.0.0.0-0ubuntu1) ubuntu_release; urgency=low
* b200:
- Add unload-bootloader option to b2xx_fx3_utils
- Update FX3 SDK for bootloader and firmware
- Fix address for serial number in firmware
- Enable power calibration API
- Add a prop tree node usb_version
* cal:
- Add utility to update all .fbs files, or check the generated ones
- Add pwr_cal container
* cmake:
- Use relative path to Python lib location for Windows installer
- Add ability to pass CXXFLAGS to CMake environment
* docs:
- Add new CHDR format to transports
- Update register maps
- Update FPGA manual
- Update mender commands for Zeus filesystems
- Add section about network mode on E3xx devices
- Add DPDK link detection section
- Add Windows-specific UHD Python module notes
- Add note about compiling on Ubuntu 20.04
- Update PCIe xport instructions for NI Repos
- n3xx: Include WX in table of N320 images
- Add stream and transport args documentation
- Update Basic/LF dboard references to use new operating mode
- e3xx/n3xx: Add sections on FP-GPIOs and how to drive them
- n3xx: Document eeprom flags
- Add note about DPDK needing to be built as shared libraries
- Change DPDK version to 18.11 and make args use underscores
- Clarifying which devices support DPDK
* dpdk:
- Improve link status detection
- Increase default num recv frames
- Add new DPDK stack to integrate with I/O services
* e31x:
- Add retry to loopback_self_test
- Change RFNoC Ctrl clock to 40 MHz
- Fix timeout for timekeeper registers
- Fix filter bank and antenna switching for channel 0
- Swap out liberio for internal Ethernet
* e320:
- Fix timeout for timekeeper registers
- Swap out liberio for internal Ethernet
* examples:
- Fix install paths in OOT RFNoC block example
- Add usrp_power_meter example
- Update test_messages example
- Update gpio example
- Add options to benchmark_rate
- Add example out-of-tree module for RFNoC modules
- Remove thread priority elevation
* fpga:
- Added AA image mappings to N320 image package
- Add Replay Block to RFNoC Core Image
- Update DRAM IO signatures
- sim: chdr_stream_endpoint_tb improvements
- sim: Fix stream command and status models
- Update AXI interconnect address range for n3xx and e320
- rfnoc: Update CHDR stream INIT command
- Update coding guidelines
- Replaced RFNoC architecture with new 4.0 version
- Added modelsim make simulation target
- Upgrade to Vivade 2019.1
- Removed unused coregen files and modules
- Removed fpga submodule and merged into uhd repo
- lib: Change max FFT size to 1024
- lib: add Intel MAX10 architecture for 2clk FIFO
- rfnoc: Port RFNoC Keep One in N block to new RFNoC architecture
- rfnoc: Port RFNoC Replay block to new RFNoC architecture
- rfnoc: Port Signal Generator RFNoC block to new RFNoC architecture
- Add Switchboard RFNoC block
- Remove liberio
- rfnoc: Port RFNoC Moving Average block to new RFNoC architecture
- rfnoc: Port Log-Power block to new RFNoC architecture
- rfnoc: Port RFNoC Window block to new RFNoC architecture
- lib: Add synthesizable AXI4-Stream SV components
- lib: Add interface and model for AXI4-Lite
- rfnoc: Add support for 512-bit CHDR widths
- rfnoc: Port RFNoC Add/Sub block to new RFNoC architecture
- rfnoc: Port Vector IIR RFNoC block to new RFNoC architecture
- lib: Add AXI-Stream splitter (axis_split)
* lib:
- Remove recursive locks in apply_corrections
- Add power cal manager
- deps: Add FlatBuffers 1.11.0 header files
- Add DPDK service queue
* mpm:
- e31x: Accept FF terminated strings in eeprom (legacy support)
- Return 10 Gbs link speed on failure
- Exclude internal NIC for network hosts
- Add ability to run scripts to MPM shell
- n3xx: Remove eth1, eth2 from interface list
- Default virtual NIC CHDR IP selection
- Enable internal NIC on the N3xx
- Clean up code, improve Pylint score
- Move common mboard regs code to common location
* mpmd:
- Remove liberio
* multi_usrp:
- Fix connect/disconnect of RFNoC chains
- Various multi_usrp_rfnoc fixes
* n310:
- Add Replay Block to default FGPA images
- Fix GPIO registers
* n320:
- Add Replay Block to default FGPA images
- Double radio ingress buffer size
- Enable inverse sinc filter for DAC37J82
* n3xx:
- Fix timeout for timekeeper registers
- Swap out liberio for internal Ethernet
* python:
- Add peek/poke bindings to noc_block_base
- Add Keep One in N block controller bindings
- Add replay RFNoC block controller bindings
- Add siggen RFNoC block controller bindings
- Add Switchboard block python bindings
- Add moving average RFNoC block controller bindings
- Add bindings for C++ CHDR Parser
- Add window RFNoC block controller bindings
- Add FFT RFNoC block controller bindings
- Add null RFNoC block controller bindings
- Add vector IIR RFNoC block controller bindings
- Add radio RFNoC block controller bindings
- Add FIR filter RFNoC block controller bindings
- Add Fosphor RFNoC block controller bindings
- Add DUC RFNoC block controller bindings
- Add DDC RFNoC block controller bindings
- Added new RFNoC image builder module under the uhd module
- Remove Python2-specific code
- Included complex.h to allow pybind to convert that data type
* rfnoc:
- replay: Update packet size on mtu update
- Set null source/sink block initial state
- Add support for 32-bit memory address widths to Replay block
- Enable SEPs with connect_through_blocks
- Exit disconnect() early if nodes not in node map
- Add multichannel register interface
- Added support for destruction of streamers
- Add Keep One in N block support
- Port siggen RFNoC block controller support to new RFNoC architecture
- Add Switchboard block support
- Port Moving Average block controller to new RFNoC architecture
- Port Log Power RFNoC block support to new RFNoC architecture
- Port window RFNoC block controller to new RFNoC architecture
- Port Add/Sub RFNoC block support to new RFNoC architecture
- Add USE_MAP prop/action forwarding policy
- Port Split Stream RFNoC block to new RFNoC architecture
- Port Vector IIR RFNoC block support to new RFNoC architecture
- Port RFNoC fosphor block to new RFNoC architecture
- Port FIR filter RFNoC block controller to new RFNoC architecture
- Add multichannel register interface
- Add RFNoC Python API
- Unify endianness of transports
- Add DMA FIFO block controller
- examples: Port examples to new RFNoC
- Implement flushing on overrun
- client_zero can track num SEPs and num ctrl EPs separately
- Add basic round-robin allocation for links
- Add ability to select transport for streamers to user APIs
- Use link_stream_manager's mgmt_portal for all mgmt packets
- graph: Optimize property propagation algorithm
- Port DUC block controller to new RFNoC architecture
- Add MTU tracking
- Implement overrun handling using action API
- Port null block controller to new RFNoC architecture
- Add mb_controller API
- Port radio block controller to new RFNoC architecture
- Port default block controller to new RFNoC architecture
- Port DDC block controller to new RFNoC architecture
- Add rfnoc_graph class
- Add action API
- Refactored CHDR packet interfaces
- Add noc_block_base class
* tests:
- Fix build issue with Boost 1.67
- Add unit tests for new RFNoC block controllers
- Fix multi_usrp_test
- Add unit tests for pwr_cal_mgr
- Migrated rfnoc block tests to dedicated subdirectory
- Add more tests for max rate streaming
- Add tests to exercise max streaming rates and report results
* tools:
- Update dissectors for Wireshark major version 3, new CHDR
- Update FPGA functional verification tests for X3x0 mcr's & dpdk
* transport:
- Implement eov indications for Rx and Tx streams
- Implement an I/O service that uses an offload thread
- Implement a single-threaded I/O service
* twinrx:
- Bypass adf535x feedback divider
- Update synthesizer register values for improved rf performance
- Fix increased noise floor
- Remove decimation from frontend
* uhd:
- Disable optimizations for Mac for build speed
- remove liberio
- improved handling of empty serial number hints
- Add discoverable_features API
- Add reference power level API to multi_usrp and radio_control
- Add fuzzy serial number checking
- paths: Harmonize around XDG Base Directory specification
- cal: Use usrp::cal::database instead of CSV files
- cal: Add iq_cal calibration data container class
- cal: Add calibration container class
- cal: Add database class
- Introduce I/O service manager
- Replace usage of boost smart pointers with C++11 counterparts
- add udp boost asio implementation of transport interface
- Add thread affinity utility functions
- types: Extend stream_cmd_t::num_samps to 64 bits
* utils:
- Expose CHDR Parsing API
- Expose CHDR Types in Public API
- Support expressions for num_ports in block defs
- Let uhd_images_downloader also use HTTPS proxies
- Fix FPGA search in rfnoc_image_builder from fpga-src to fpga
- Add convert_cal_data utility
- image_builder: Support parameterized number of ports on blocks
* x300:
- Add Replay Block to default FGPA images
- Update frame sizes for 10GbE
- Fix for incorrect PCIe buffer size values
- Change default dboard clock rate from 50 to 100 MHz
- Update maximum bitstream size
- Enable power reference API
- Expand DRAM address space to 1G
- Add front-panel GPIO source control
-- Ettus Research <packages@ettus.com> Sun, 13 Sep 2020 12:08:55 -0800
uhd (3.15.0.0-0ubuntu1) ubuntu_release; urgency=low
* N320: Fix MCR initialization, fix checks for LO distribution board,
reset RX IQ balance on init, replace DRAM FIFO with replay block,
improve constraints, fix I/Q imbalance compensation, add FPGPIO control
* N310: increase default dc offset averaging window, make tunes
asynchronous, add capability to control RF filter bypass and freq.band
limits, fix setting user DB EEPROM, correctly report N321 vs N320,
improve DDR3 BIST, update max revision to 7, fix DMA arbitration to
use contiguous packets, replace DRAM FIFO with replay block, fix SFP
link up status, add workaround for clocking interference with external
reference clocks, disable gpsdo clock/time source options when
enable_gps=0
* X300: Fix max bitfile size, fix GPIO ATR property access type, heavily
refactor, introduce conn_mgr, add DPDK support, add
capability to flash NI-2974 FPGA, fix clocking code, enable 11.52 MHz
and 23.04 MHz system ref rates, improve usage of constrained device
args, enable ADC gain through RFNoC API, add mode to set master clock
rate to arbitrary values between 184.32 and 200 MHz, throttle
muxed_zero_copy_if
* E320: Fix time source clobbering ref source, add support for RevE, fix
reporting of FPGA version hash, fix SFP link up status, fix missing
ce_clk driver
* E310: Convert to MPM architecture, fix uhd_image_loader usage, fix DMA
arbitration to use contiguous packets, reduced DMA chans to 4 (using
data stream muxing), fix DRAM_TEST target build
* E3xx: Correct frontend name in devtest
* B200: Add command to query bootloader status, fix sc12 streaming, fix
FIFO sizes on GPIFII interface
* UBX: add temperature compensation mode
* SBX: Only update ATRs when lock state changes
* TwinRX: add LO charge pump properties, increase default charge pump
value on LO1, add low spur tuning mode, fix duplicate write to N value
in DDC
* RFNoC/device3: Read command FIFO size from device instead of
hardcoding values, fix multidevice graph connections, ENABLE_RFNOC now
defaults to ON, search all nodes for tick rate, add update_graph()
call which lets blocks do a graph-wide update of properties, fix
missing port arg in SR_WRITE Noc-Script call, constrain
send/recv_frame_size baed on MTU, fix flushing on init/deinit, disable
FC ACKs for lossless links
* RFNOC/FPGA: Fix rb_stb in split stream block, fix off-by-one error in
the window block, fix phase reset and -accumulator for DDC and DUC
blocks, fix flushing on split-stream block, fix DC offset issue with
DDS by using proper rounding, fix DUC/DDC sample rate switching by
latching N on M in axi_rate_change, various fixes to
uhd_image_builder, fix MTU settings in blocks, align byte count to
8-byte word
* RFNOC: Allow UHD_RFNOC_DIR to contain multiple paths
* Python API: Replace Boost.Python with PyBind11, fix benchmark_rate
statistics, fix phase alignment test script
* Python API: Added include of complex.h to allow pybind to convert
complex data types
* Python API: Make multi_usrp::get_*_usrp_info() return a Python dict
* Python API: Fix array processing in send_waveforms()
* UHD: Allow ignoring fallthrough warnings, reduce Boost footprint,
remove gpsd dependency, improve streaming, reduced the number of
compiler warnings, introduce pop() to the prop tree, add typecast
operator from uhd::dict<> to std::map<>, properly cache config file
data
* MPM/mpmd: Introduce compatible rev numbers to support future hardware,
fix some resource leaks in mpmd, fix spurious reclaims causing
unnecessary warnings, fix resource leaks in liberio xport, allow to
mux data streams over liberio transports (e.g. to require fewer DMA
channels on E310), wait for DPDK links to come up before proceeding,
relax failure handling when updating components (fixes spurious errors
when updating FPGA images over SFP), fix issue where RPC
initialization would hang on failure
* MPM: Re-enable RPC server timeouts after components have been updated
* MPMD: Remove arbitraty frame size defaults for UDP transports
* MPMD: Fix incorrect link rate warnings
* FPGA: Use new device-tree overlay syntax, upgraded to Vivado 2018.3,
broke various paths with critical timing, allow SystemVerilog source
files, improve viv_modify_bd and viv_modify_tcl_bd, fix resets on 2clk
FIFOs
* USB: Allow cancelled USB requests to occur
* USB: Fix global session race condition
* Logging: Always honour log level, don't log colours for non-ttys, fix
includes, demote various log messages, fix logging colours, fix
deadlock on Windows machines
* Examples: Fix benchmark_rate INIT_DELAY, fix memory leak in
tx_samples_c
* Examples: Remove thread priority elevation
* Examples: Add options to benchmark_rate for start delays and priority
* Tests: Make the Python interpreter for devtests a parameter, add unit
tests to MPM
* Utilities: Fix converter benchmark for Py3k and scaling issue
* Tools: Fix kitchen_sink
* Tools: Fix Wireshark dissectors to work with WS1, 2, and 3
* Tools: Various fixes to FPGA functional verification tests
* Docs: Various fixes, fix Doxygen warnings, fix links to KB, update
DPDK information about building libraries, add DPDK subsection about
thread priorities, update testing procedures
* C API: Add uhd_get_abi_string, uhd_get_version_string
* CMake: Make manpage compression optional, allow setting of PKG_DOC_DIR
from the CMake commandline, add replay example, fix missing 'project',
replace ENABLE_PYTHON3 with a simpler Python detection, clean up
superfluous modules, improve log statements, bump dependency min
versions, add MPM unit testing, fix missing BIGOBJ for MSVC, add our
own UHDBoost.cmake to better find Boost across versions and systems,
constrain DPDK check to exact version
* Formatting: Apply clang-format to all files, break after template<>
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.14.1.0-0ubuntu1) ubuntu_release; urgency=low
N320: Terminate the DAC when not transmitting
E320: Add support for rev E
E320: Added .gitignore for FPGA build products
X300: Add DPDK support
X300: add capability to flash NI-2974 FPGA
X300: Broke two critical timing paths in FPGA
X300: fixed udp WSA buffer size assignment issue
E310: Fix DRAM_TEST target build
B200: Add bootloader for FX3 (fix for B2xx failing to enumerate)
TwinRX: Expose charge pump current for LO2
TwinRX: Add low spur mode for LO2
TwinRX: increase rev c lo1 charge pump default value
TwinRX: Fix tick rate
Device3: Constraint send/recv_frame_size based on down/upstream MTU
Device3: Fix MTU and default frame sizes
RFNoC: Search all nodes for tick rates
RFNoC: Change default address for the reg readbacks
uhd_image_builder: Let the OOT module point to folders not named "rfnoc"
uhd_image_builder: Add --auto-inst-src
MPMD: Fix spurious reclaim call after unclaim
MPMD: Release resources on destruction
MPM: Add SW/HW compat
liberio: Release context holder on destruction of last liberio xport
transport: fixed a pre-mature buffer reset
nirio: Fix typo in nirio_zero_copy
GPSD: fix API for 'gps_read'
AD9361: Fix return values for tune and set_clock_rate
DUC/DDC: Fix phase reset and accumulation
cores: Use NSDMI consistently in ?x_dsp_core_3000.*
Logging: fix deadlock issue on Windows machines
Logging: Fix ANSI colour codes
Utils: Add X300/X310 reset utility
Docs: Improved Windows-related build instructions
Docs: Add link to README for building custom filesystems for N3xx
sim: Fixing the port number in use for connection
tools: Fix for proj creation in ip_utils for tcl-based IP
tests: Fix mock_ctrl_iface for 32-bit MSVC
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.14.0.0-0ubuntu1) ubuntu_release; urgency=low
* N320: Add support for N320 and N321
* USRP-2974: Add support for USRP-2974
* DPDK: Add DPDK-based sockets-like library (for N3xx)
* N3xx: clocking API changes for transitioning clock and time sources
* N3xx: Bump max rev to G/6
* N3xx: Improve error messages for invalid clock/time settings
* N3xx: Get RFNoC crossbar baseport from FPGA
* N3xx: init peripherals before loading FPGA (to fix SFP0 init issues)
* N3xx: Move Linux kernel to 4.15
* N3xx/E320: Prepend SDK filename with device name
* N3xx: Update max rev to 7 (H)
* N3xx: Remove DDR3 from standard BIST collection
* N3xx: BIST: Improve DDR3 BIST to check for DmaFIFO
* N3xx: BIST: Auto-load the AA image for the ddr3 BIST
* N3xx: BIST: DDR3 test only enumerates first block
* N310: Modify AD9371 reset function to keep it in reset
* N310: move init_rf_cal before JESD de/framer bringup
* N310: Fix sporadic power on failures (requires firmware update)
* E3xx: Increase spp limit for E3xx radio
* E320: bist: Fix ref_clock lock test implementation
* E320: bist: Add link_up test
* E320: Add all 5 temp sensors, fan sensor and rssi sensors per channel
* E320: Fix tx/rx atr - antenna and frequency settings
* E320: Enable devtest for E320
* E320: images: Separate images package for Aurora image
* E320: Get RFNoC crossbar baseport from FPGA
* E320: add fpga_version_hash to e320 device info
* E310: Fix initialization of antenna and frequency values
* E31x: Destruct RFNoC before loading idle image
* X300: Reduce default send_frame_size to 4000 over Ethernet
* X300: Change Ethernet buffering
* X300: Log git hash and compat number as debug message
* X300: Move defaults to their own header
* X300: Use constrained_args
* X300: Enable clock_source and time_source device args
* X300: NIRIO: Demote RPC client cancel/abort to TRACE
* X300: remove default_buff_args properties
* X300: Remove 120 MHz master_clock_rate option
* X300: Set minimum master clock rate to 184.32 MHz
* X300: Factor our PID -> MB type and MB type -> product name mapping
* X300: Remove usage of boost::bind
* X300: Fix compiler warnings related to type conversions
* X300: Fix tick and sample rate setting
* X300: Enable ADC gain through RFNoC API
* X300: Demote NIRIO rpc client start/stop log messages to DEBUG
* X300: Enable 11.52 MHz and 23.04 MHz system ref rates
* X300: Enable x300_device_args.to_string()
* X300: Catch more inconsistencies in x300_device_args
* X300: Removed invalid 200 MHz sysref rate
* X300: Change PLL CP currents in x300_clock_ctrl
* B200: Remove superfluous fake lambda
* B200: Add support for user regs
* B200: Fix compiler warnings related to type conversions
* B100: Move fifo_ctrl_excelsior to b100 subdir
* B100: Fix fifo_ctrl_excelsior not exiting
* B100: Remove all Boostisms from fifo_ctrl_excelsior
* B100: Demote some clocking-related log messages to trace
* MPM: Get list of temperatures from all thermal zones
* MPM: add link_speed xport_info
* MPM: Add __mpm_device__ as usrp_hwd module variable
* MPM: Add usrp_update_fs
* MPM: Add i2c APIs for simple transfers
* MPM: Add vector-based transfer function for i2c
* MPM: Add variable configuration support to nijesdcore
* MPM: Add eyescan utility to nijesdcore
* MPM: Add PRBS-31 testing to nijesdcore
* MPM: Add convenience function to pull i2c bus from device tree
* MPM: Open and close i2c file descriptor on every access
* MPM: Multiprocessing instead of threading for claimer loop
* MPM: Factor out user EEPROM code into own module
* MPM: Add gpgga sensor function to GPSd iface
* MPM: Add bridge mode support
* MPM: Parameterize max UDP link allocation
* MPM: xport: add commit_xport docstring
* MPM: Improve error message on double-claim
* MPMD: Parallelize broadcast-finding
* MPMD: add option to enum rfnoc blocks from args
* MPMD: add link speed to xport udp
* MPMD: Add API to set RPC timeout atomically
* MPMD: Move timeout constants to header
* MPMD: Use new RPC API with timeout
* MPMD: Increase claim_rpc call timeout
* MPMD: implement get_*x_hints
* MPMD: honor user supplied send/recv_frame_size args
* MPMD: Use 4096 bytes for frame size for liberio transport
* MPMD: Use init timeout for update_component
* MPMD: Allow reclaim failures on component updates
* MPMD: Fix typecast warning in property tree default settings
* Device: Parallelize device discovery
* Device3: Move from packet-based to byte-based flow control
* Device3: Constrain send_buff_size to input fifo size
* Device3: remove tx_hint[send_buff_size]
* Device3: Replace NULL with 0 for empty function pointers
* Device3: Remove redundant function call
* Device3: Fix flow control window and interval
* UHD: Release recv buffers earlier in rx_streamer
* UHD: Fix ADF400x driver for ref counter and charge pump mode
* UHD: Improve constrained_device_args_t
* UHD API: Add multi_usrp::get_user_settings_iface()
* UHD: Remove usage of time_t (except when required)
* UHD: add default xport params to udp_zero_copy
* UHD: Update rx_frontend_gen3.v controls for 1/4-rate mixer
* UHD API: Move definition of ALL_MBOARDS and ALL_CHANS constants to
CPP file.
* UHD: Add traffic counter to null source sink
* UHD API: Add multi_usrp::set_sync_source() API
* UHD: Improve documentation for the UHD exception types
* UHD: Improve documentation for set_{time,clock,sync}_source
* UHD: add .clang-format file
* UHD: Add device arg to enable dual ethernet for tx
* UHD API: Add sync source to Python API
* UHD API: Add support for Tx LO control to C API
* UHD: Improve compatibility of abs() calls
* UHD: include <stdint.h> for int64_t for time_spec
* UHD: Updates to coding guidelines
* UHD: Fix MSVC warnings by changing a size_t to unsigned int or
uint32_t
* UHD: Add potentially missing but sometimes inferred include for
experts
* UHD: Add default xport params to udp_wsa_zero_copy
* UHD: Move device3 flow control functions to header for benchmark
utility
* UHD: Make sure BOOST_VERSION is always available
* UHD: Make clang-format skip formatting for some data structures
* UHD: Remove vim hints in headers
* UHD/MPM: Apply clang-format to all files
* UHD: Add modified clang-format for headers
* UHD: Replace uhd::math::log2 with std::log2
* UHD: Replace boost::*::{lcm,gcd}() with portable versions
* UHD API: Change get_{tx/rx}_dc_offset_range default from ALL_CHANS
to 0
* UHD: Revert to boost instead of std for sleep in some instances
* UHD: Replace Boost macros with custom ones for endianness
* UHD: muxed_zero_copy_if fixes
* UHD: Replace Boost lock & mutex with std variety for AD9361 code
* UHD: fix includes for boost::noncopyable
* UHD: Fix buffer size warning on UDP transport
* UHD: Remove duplicate operator=() for sid_t
* UHD: Fix conversion warning in max287x
* UHD: Fix various type-conversion compiler warnings
* RFNoC: Convert SR_READBACK_REG_FIFOSIZE to bytes
* RFNoC: Add ability to enable/disable RX timestamp
* RFNoC: add async message handler
* RFNoC: Changes to traffic counter register names
* RFNoC: Fix replay example port args
* RFNoC: Fix default SPP for replay
* RFNoC: Add halt to replay API
* RFNoC: Fix late packet errors
* RFNoC: Fix detection of outstanding acks by ctrl_iface
* RFNoC: Add some missing virtual destructors
* RFNoC: Update FIFO XML definition
* RFNoC: Prevent unnecessary FC ACK packets
* RFNoC: More graph traversal fixes
* RFNoC: Fix scaling of M and N values in DDC/DUC
* RFNoC: Fix typos in legacy_compat
* RFNoC: Limit number of control packets in flight
* RFNoC: Disable FC ACK packets for lossless links
* RFNoC: Add valid num_input_ports check to node_ctrl_base
* Utils: Add Zip test to downloader
* Utils: Factor wait_for_lo_lock() out of cal utils
* Utils: Add check for gdb_eeprom before accessing
* Utils: Deny positional options in uhd_image_loader
* Utils: Set tx gain to max for rx iq cal
* Tools: Add tool to analyze settling time of gain and freq changes
* Tools: Make the UHD source gen a plugin for the phase alignment test
* Test: Add Python API test
* Test: Integrate Python API Tester into Devtest
* Test: Add graph impl test to device3_test
* Test: Retrofit sph test to use new mock transport
* Test: Enable rx_samples_to_file in devtest for X300
* Test: Fix CMake `endif` warning for devtest
* Test: Fix compiler warning about unused timestamp
* Test: Add #include <thread> in system time test
* Test: Add benchmark of streaming code paths
* Test: replace has_key by using 'in'
* Test: Add universal_newlines to subprocess call in devtest
* Examples: add rfnoc_radio_loopback example
* Examples: Add benchmark_streamer example
* Examples: Add dual measurements to benchmark_streamer
* Examples: Clean up rfnoc_radio_loopback example
* Examples: Add keyboard controls to rx_ascii_art_dft
* Examples: Add benchmark_streamer support for multi-channel streamer
* Examples: Optimize benchmark_rate start time
* Examples: Improve formatting and comments in tx_waveforms
* Examples: Optimize tx_waveforms memory allocations
* Examples: change boost to std for time commands
* Examples: Add LO Offset to rx_samples_to_file
* Examples: update lo-offset naming in tx from file
* Examples: Add lo-offset to tx_waveforms
* Examples: Improved error message in tx_waveforms
* Examples: Move ascii_art_dft main function within include guard
* Examples: Fix boundary condition in ascii_art_dft plotting
* Docs: Fix Doxygen warnings
* Docs: Add info on how to implement user regs on B200
* Docs: Add manual page on compat numbers
* Docs: Add comments for TwinRX and MCR
* Docs: N3xx page shell formatting and bb image
* Docs: n3xx: fix Salt formatting
* Docs: Add note on manually disabling NEON extensions
* Docs: Fixed typos in N3xx image names (SD card build)
* Docs: Add notes on external reference frequencies for X300
* CMake: Bump CMake minimum version to 2.8.12
* CMake: Change SOVERSION and VERSION for the library files
* CMake: Extend list of additional Boost versions
* CMake: fix variable usage
* Cmake: remove Boost from dyn libs for tests on Apple
* Cmake: Fix MSVC options (add /bigobj)
* Cmake: Use native format for setup.py
* CPack: Fix RPM generation
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.13.1.0-0ubuntu1) ubuntu_release; urgency=low
* E320: Fix front panel GPIO readback
* E320: Fix master_clock_rate setting
* E320: Print extra ouptut for ref_clock BIST
* E320: Fix gps_locked type
* E320: Fix return value of get_fpga_type()
* N3xx: Enable setting clock and time sources at runtime
* N3xx: Add ref_clock BIST
* N3xx: Improve set_time_source() and set_clock_source()
* N3xx: Add exception for init failure
* N3xx: Remove HA, XA images packages
* N3xx: Change init() procedure to reduce configuration time
* N310: Add frequency bounds
* N310: Fix RX antenna mapping
* N310: Add log messages when re-initializing dboards
* N310: Add skip_rfic argument to reduce time of BIST
* N310: Add initialization of TX bandwidth
* E310: Fix initialization of antenna and frequency values
* E310: Type-cast fix for Boost
* X300: Improve firmware compat error message
* X300: Updated niusrprio driver
* X300: Add recovery for duplicate IP addresses in EEPROM
* X300: Prevent duplicate MAC and IP addresses from being programmed
* X300: New mode to configure master clock rate
* X300: Implement RFNoC get antenna functions
* B2xx: Fix values of MASK_GPIO_SHDN_SW and GPIO_AUX_PWR_ON in firmware
* B2xx: Revert changes to DSP core to fix scaling factor adjustment
* B2xx: Restore asynchronous reset of AD936x
(fixes LIBUSB_TRANSFER_OVERFLOW and unexpected sid errors)
* TwinRX: enable ch1 lo amps if ch2 is using an external lo source
* TwinRX: Correctly initialize antenna mapping on X300
* TwinRX: Revise ADF5356 frac2 register calculation to prevent drifting spurs
* TwinRX: Fix initialization
* TwinRX: Tuning improvements
* TwinRX: Enable phase resync on ADF535x
* TwinRX: Make routing to LO1 and LO2 mutually exclusive
* BasicRX/LFRX: Fix real mode in rx_frontend_core_3000
* UHD: Define UHD_API as empty string when building static lib
* UHD: Changed to 'all_matching' endpoint resolution for udp_simple transport
* UHD: Add CMake flag for NEON SIMD
* UHD: Fix usb_dummy_impl compilation in MSVC
* UHD: Reconcile time_spec operators with boost concepts
* UHD: Fix rounding in ddc/duc rate calculation
* UHD: Increase MPMD RPC timeout when calling set_time_source()
* UHD: Fix RX streamer SOB and EOB handling
* UHD: Add UHD_SAFE_CALL to block_ctrl_base destructor
* UHD: Change SOVERSION to ABI string and VERSION to full UHD version
* UHD: Update cmake style to use lower case commands
* UHD: Add SOURCE_DATE_EPOCH
* UHD: Improve logic for UHD_IMAGES_DIR
* UHD: Add RUNTIME_PYTHON_EXECUTABLE
* UHD: Fix return value of get_rolloff() for filters
* UHD: Properly register devtest
* UHD: Fix log statement for Port number on RFNoC block
* UHD: Use "MATCHES" instead of "STREQUAL" for "Clang"
* UHD: Fix GPGGA string formatting for gpsd
* Device3: Set default block control response SIDs
* Device3: Fix block control flushing
* RFNoC: Improved flushing mechanism in noc_shell and dma_fifo
* RFNoC: Install missing dma_fifo_block_ctrl header
* RFNoC: Replace some [] with .at() in radio_ctrl_impl
* RFNoC: Fix graph traversal
* MPM: Add Git hash, version to device info
* MPM: Reset the RPC server upon reload
* MPM: TDC: Update PDAC BIST and flatness test to use latest APIs
* MPM: Fix handling of 0-valued dt-compat
* MPM: Fix GPSD sensor names for N3xx and E320
* MPM: Add args to update_ref_clock_freq to properly support dynamic setting
* of clock and time references
* MPM: Fix Pylint warnings
* MPM: Identify sysfs gpios more generically
* MPM: Add lock_guard() function
* MPM: Factor E320 and N3xx BIST code into common module
* MPM: Add gpsd error handling
* MPM: Add FPGA git hash to device info
* MPMD: Increase RPC timeout during readng mb sensor
* MPMD: Improve error message for compat number mismatches
* Python API: Enable Python API on Windows
* Python API: Change .dll to .pyd for Win32
* Python API: Fixing Boost.Python initializer visibility
* Python API: Fix duration of benchmark rate
* Python API: Add missing constructors of time_spec_t
* Python API: Expose streamer timeouts
* Python API: Tighten the scope of releasing the GIL
* Python API: Add device_addr_t
* Python API: Populate the tune_result_t binding
* Utils: Many fixes and enhancements for uhd_images_downloader
* Utils: Update query_gpsdo_sensors to work on E310
* Examples: Removed some legacy code patterns from RFNoC examples
* Examples: Fix channel argument for rx_samples_to_file
* Examples: Fix benchmark_rate MIMO synchronization
* Examples: Add phase alignment example
* Examples: Fix RX antenna not being applied in txrx_loopback_to_file
* Test: Add more env vars, make Py3k compatible
* Test: Add multi_usrp_test.py to devtest
* Test: Clean up, refactor, and improve devtest
* Test: Enable rx_samples_to_file in E320 devtest and N3xx devtest
* Test: Reduce sample rate for E320 1G devtest
* Test: Add unit test for eeprom_utils
* Docs: Add clock_source and time_source to n3xx argument list and fix WR clock_source call
* Docs: Minor tweaks to the Python API manual page
* Docs: Add E320 test procedures
* Docs: Added TwinRX page
* Docs: Fix N210 MIMO Phase Alignment test command
* Docs: Add E320 information
* Docs: Improve sections on clock/time references
* Docs: Add section on X300 motherboard clocking
* Docs: Add more information on Salt for N3xx and E320
* Docs: Adjust E310 functional verification tests
* Docs: Add documentation on GIL release
* Debian: Update control files
* Images: Add N3xx CPLD file to manifest
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.13.0.2-0ubuntu1) ubuntu_release; urgency=low
* N3xx: Fix issue where changing the clock/time source could result in
clocks becoming unlocked
* N3xx: Improve error messages for invalid clock/time settings
* N3xx: Add support for Rev G mboard
* MPM: Add function parameter to support holding AD9371 in reset
* Docs: Add section on building fs/SD images for N3xx
* Docs: Fix Doxygen warnings
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.13.0.1-0ubuntu1) ubuntu_release; urgency=low
* N3xx: Fix UIO usage in Aurora BIST
* N3xx: Fix EEPROM parsing (for upcoming hardware)
* UHD: Fix install path for Python API
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.13.0.0-0ubuntu1) ubuntu_release; urgency=low
* N3x0: Enable fast-reinit, fix power level issue, accept 0x01 PID for
AD9371, fix concurrency issues with Liberio
* B200: Fix sc8/sc12 modes, fix frame-size related issues, fix tick rate
coercion, fix issues on update of tick rate, fix EOB-not-seen
issue
* E310: Move to RFNoC architecture (this disables network mode!)
* UBX: Fix phase synchronization for 184.32 MHz master clock rate,
* multi_usrp: Fix get_?x_info() API calls
* UHD: Remove more Boost usage, fix some compiler warnings, default to
all-channels subdev specs for X3x0 and N3x0, various LMX2592
fixes, bump minimum CMake to 2.8.2, fix logging dtor issues
* RFNoC: Merge all existing RFNoC features into master
* FPGA: Fix various testbenches, add batch testbench execution mode,
improve uhd_image_builder and uhd_image_builder_gui, add all
existing RFNoC features
* Add Python API
* MPM: Enable Rev2 EEPROM format, fix some rare issues when detecting
Ethernet devices
* CMake: Allow to override UHD_GIT_BRANCH, fix Python-finding logic, add
ENABLE_N300 target
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.12.0.0-0ubuntu1) ubuntu_release; urgency=low
* N3x0: Add White Rabbit support, add N300 support, standard BIST
includes fan, fix issue with 1GigE, switch to 2 radio blocks
with 2 channels each, upgrade TDC to version 2.0, fix issue in
ARM deframer
* X300: Enable BasicRX to use A/B/AB/BA muxing setups, more consistent
logging, fix enumeration issue with TwinRX
* USRP2/N2x0: Re-add ability to modulate in the DAC, improve ISE
settings to better meet timing
* B205mini: Fix global reset, improve timing in b205_ref_pll
* UHD: Remove a lot of Boost usage, mostly replaced by C++11 features,
more unit tests, fix Boost 1.67 compatibility, fix compiler
warnings, add API to query clock rate range, fix get_usrp_?x_info
* MPM: Refactored N3xx code, moved C++ standard to 14, refactor
Boost.Python bindings, use CMake variable MPM_DEVICE
* Logging: Allow disabling fastpath msgs at runtime
* Docs: Clarified meaning of DSP frequencies, improved manual
section on synchronization, added some known issues to B100,
USRP2, and USRP1, update test test procedure description
* Examples: Improved benchmark_rate (added failure thresholds, fixed
incorrect calculation of samples on drops, fixed timeout values),
minor fixes to txrx_loopback_to_file
* Utils: Handle U's in calibration tools, create-lvbitx.py is now Py3k
compatible, fixed git-hash.sh
* RFNoC: DDCs/DUCs use DDSes instead of CORDIC, add DMA-based replay
block in FPGA, add 64-bit support to axi_wrapper, add compat
number to radio block,
* Debian: Fix rules file, fix Changelog format
* Fix license headers
* This release includes all bugfixes and features from previous
releases, in particular, the 3.11.* release cycle
* Known issues: N310: In some rare scenarios at high rates, streaming
can fail and even bring the FPGA into a bad state.
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.11.1.0-0ubuntu1) ubuntu_release; urgency=low
* N310: fix compiler warnings
* N310: Implement digital loopback
* N3xx: Add N3xx devtest
* X300: Properly coerce master clock rate (tick rate)
* X300: handle bad weak_ptr during pcie discovery
* X300: handle bad weak_ptr during pcie discovery
* X300: Fix check_radio_config() to fix errors when using a single dboard
in slot A
* B200: docs: Suggest modifying recv_frame_size for more stability
* B200: Fix bandwidth warnings and ranges
* N2xx: Fix regression issue that limited tuning range
* UBX: Change antenna functions to coercers on antenna/value properties
* adf4002: Fix register programming for power down bit
* UHD: Fix config file path for some Windows builds
* UHD: Add operators == and != for uhd::dict
* UHD: Add device_addr_t constructor from map
* UHD: Fix range of gain group to skip gains with zero step
* UHD: Changes to support Boost 1.67
* UHD: Correctly set end of burst flag in RX metadata
* UHD: Reduce usage of boost::assign, boost::this_thread::sleep, and boost:bind
* UHD: Update multi_usrp::get_usrp_?x_info() for MPM devices
* UHD: Refactor static const values to fix linker errors in niusrprio
* mpm: cmake: Add git hash and version info to Python module
* mpm: Add reference counters to UIO
* mpm: Add offset to EEPROM reads
* mpm: Disable PPS out during initialization
* mpm: Update cmake to find the correct python3
* mpm: Bump maximum supported revision to 5 (Rev F)
* mpm: Fixed db slot typo in db-id
* mpm: Increased claim timeout, made a separate RPC connection for claim, and
added asyn calls for long RPC executions
* mpm: Improve xport<->SFP mapping algorithm
* mpmd: Improved find routine to fail fast and verify correct device is
reachable
* mpmd: Add missing virtual destructors
* rfnoc/x300: Make sure peek32() and peek64() are called with actual addresses
* rfnoc: ctrl_iface cleanup
* rfnoc radio: Improve warning for too many samples requested
* rfnoc radio: get_rx_stream resets sequence num
* examples: Increase settling time, increase buffer fill time, and fix subdevice
selection in txrx_loopback_to_file
* examples: Improvements to benchmark_rate
* utils: downloader supports multiple RegExs
* utils: Added code to handle underruns during self calibration
* utils: Fix 30s tiemout in query_gpsdo_sensors
* logging: Improve style consistency and demote some messages
* logging: Fix UHD_LOG_FILE cmake variable
* Docs: Add Known Issues section to USRP1, B100, and USRP2/N2x0
* Docs: Hide dependencies directory from Doxygen
* Docs: Clarify subdev specs and magnesium driver usage for N300/N310
* cmake: Improve warning for missing requests
* cmake: update NSIS template
* cmake: Remove images downloader section (replaced by manifest)
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.11.0.1-0ubuntu1) ubuntu_release; urgency=low
* N300: Added driver support (includes some refactoring of N3xx
codebase)
* MPM: Fix PyLint warnings, Fix error handling for TCA communication
errors, Fix printout of AD9371 version
* uhd_images_downloader: Create unique archive names for images archives
(now include git hashes in the filename)
* uhd_images_downloader: Fix SHA256 check
* utils: Add support for N3xx filesystem images to images downloader
* UHD: Minor logging fixes
* UHD: fix legacy compat to work with 2TX radio block
* X300: improve lvbitx bitstream md5 read time
* examples: Enhance benchmark_rate with more stats and timestamps for errors
* cmake: Correctly fail when an unavailable component is requested
* debian: Add UHDConfig.cmake to install list for libuhd-dev
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.11.0.0-0ubuntu1) ubuntu_release; urgency=low
* N310: Added driver
* UBX: Add support for CAL antenna for Rev E
* Added the module peripheral manager (MPM) with all subcomponents (N310
drivers, mpm_shell, RPC server, BIST, etc.)
* UHD: Added rpclib as a internally tracked dependency
* UHD: Reduced the usage of Boost
* UHD: Updated uhd_images_downloader: Now uses more elaborate manifest to
optimize downloads
* UHD: Introduced uhdlib internal include paths
* UHD: Add support for configuration files. USRP settings can now be set using
a uhd.conf file in addition to device args
* UHD: Add narrow and narrow_cast
* gr-usrptest: Various bugfixes
* Updated required Vivado version to 2017.4
* Updated all license headers to use SPDX identifiers and correctly identify
Ettus Research as part of National Instruments
* This release includes all bugfixes and features from previous releases, in
particular, the 3.10.* release cycle
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.10.3.0-0ubuntu1) ubuntu_release; urgency=low
* X300
** Fix max rate calculation for 1 GbE
** Fix for DAC synchronization errors (unexpected FIFO depth)
** Reduced CPU usage during TX
* N230
** Properly initialize request structure before discovery
* B200
** FX3 firmware performance opitimizations
** Fixed sequence error on second TX burst
* TwinRX
** Added ADF5356 synth and Rev C support
* UBX
** Add implementation of TDD xcvr_mode and for TX PA on in TDD mode (to reduce transient on older revs)
** Add support for UBX-TDD
* C API
** Fixed dboard EEPROM revision error handling
** Make uhd_rx_streamer_last_error use SAFE_C
** Better error handling in uhd_usrp_get_[t/r]x_stream
* RFNoC
** Fix ctrl_iface to pop sequence numbers only after success
** Fix sequence number error message in ctrl_iface
** FPGA fix for sr_read() failure to ack errors
** FPGA fix for repeated sequence number for RX packets with 1 sample
** FPGA fix for axi_serializer edge case
* Docs
** Fixed B200 power LED description
** Update README application links
* UHD
** Utilize poll() instead of select() for UDP transports where possible to avoid descirptor limits
** Fix build with Boost 1.66
** Add EEPROM info to dboard_base class so daughterboard code can access all EEPROM info
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.10.2.0-0ubuntu1) ubuntu_release; urgency=low
* multi_usrp: Fixed get_normalized_tx_gain.
* E300: Fix for streamer recreation issue. Reduced minimum timeout, fixed
potential race condition.
* X300: Fix for network discovery, will now return early when correct serial is
found. Fixed issue with DAC sync. All async messages now go through
single DMA channel on PCIe. Improved TX performance. Fixed page size
acquisition for PCIe. Fixed some FW communication errors. Improved flow
control. Removed MTU throttling. Legacy compat falls back to min spp
for mixed transport types.
* CBX: Fixed LO LPF behaviour in 1.5-2 GHz range.
* UBX: Fixed dtor SIGABRT issue. Better error handling for various dboard clock
rates.
* TwinRX: Added LO reimport feature.
* GPSDO: Improved detection. Improved query_gpsdo sensor.
* RFNoC: Fixed issue with DDC and DUC command tick rate.
* UHD: Fixed potential memory leak in tasks. Fixed get_normalized_tx_gain().
Fixed default socket buffer size to honor MTU.
* Examples: Added channel param to samps to/from file. sync_to_gps exits
instead of uncaught throw. latency_test improved output. Use
next_pps in test_clock_synch. Added TwinRX FHSS example.
* Utils: Modified behaviour of uhd_images_downloader so it won't delete dirs
when using -i
* Tools: Updates to CHDR dissector. Added set_time_source_out(). Fixed LO API.
* C API: Fixed some missing fields in USRP info.
* Docs: Many minor fixes. Fixed Doxygen warnings related to /* in files.
* CMake: Fixed GCC 4.4 compilation issue. Added ability to specify package
names.
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.10.1.1-0ubuntu1) ubuntu_release; urgency=low
* Docs: The protocol for Gen-3 devices is now consistently referred to as CHDR.
* X300: Fixed EEPROM corruption bug (happened when two processes would access
find routines on the same device at the same time). Improved initialization
time. CE clock is now 214 MHz. Fixed channel list generation. Find routines
now more lenient in case one devices fails (others can still be found then).
Improve PCIe behaviour. Fix timed commands for non-TwinRX dboards. Improve
AXI Interconnect (faster, improved build timing).
* N230: Use second_addr (like X300).
* C API: Added UHD_VERSION macro. Fixed online rate change.
* Utils: Minor fixes to uhd_images_downloader.
* Build/CMake: Fixed some Py3k build issues. Fixed many compiler warnings. Allow
to specify package names.
* RFNoC: Fixed sampling rate mismatch error. Noc-Shell uses a non-cascaded 2-clk
FIFO. Increase default FIFO sizes on DUC and DDC blocks.
* UBX: Force on RX driver to eliminate transient.
* Transport code: Fixed memory leak.
* FPGA repository: Merged usrp3_rfnoc and usrp3 directories again. Cleaned up
superfluous files. Clean separation between Gen-3 and other devices in usrp3.
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.10.1.0-0ubuntu1) ubuntu_release; urgency=low
* Fixed multiple compiler warnings
* Multiple documentation fixes
* X300: RX strobe lines are always in sync on device initialization. DB EEPROM
now properly written. ignore-cal-file no longer ignored. Fixed case where too
large recv_frame_size settings could break things. Reduced ZPU clock speed
(helps FPGA timing). Added area constraints for AXI interconnect. Improved
halfband scaling in rx_frontend. Improved PCIe streaming reliability
* B2xx: Clear sequence numbers in idle state.
* RFNoC: Nodes disconnect on destruction. Fixed setting of correct bits on
sr_error_policy. DDC does no longer clear timed commands on EOB. DUC fixed
timed CORDIC tuning. Enable Noc-Shell response FIFOs (fixes simultaneous
commands on multiple channels).
* UBX: Changed default performance parameters
* TwinRX: LEDs properly light up depending on channels. Fixed issue of multiple
(redundant) writes. Simplified API steps for phase synchronization
* XCVR: Query dboard clock instead of DAC clock. Helps in X3x0s.
* GPS: Fixed message for case when no GPS is present. Fixed multiple GPS-related
issues.
* Converters: Fixed floating point rounding error in tests.
* Utils: uhd_usrp_probe can now query vectors
* Fixed issue that prevented soft_regs working on 32-bit systems
* Tools: Merged dissectors into common directory.
* CMake: -Og is the default now for gcc-based Debug builds.
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.10.0.0-0ubuntu1) ubuntu_release; urgency=low
* Changed version string to quadruplets (Major.API.ABI.Patch)
* Minimum dependencies bumped for gcc, Boost, CMake, clang and Python.
* TwinRX: Added support. Includes LO API for multi_usrp.
* N230: Added support
* Added expert framework
* X300: Completely restructured to use RFNoC
* X300: FPGA builds include git hash, dual 10GigE receive is now supported
(allows 2x200 Msps receive over 2x10GigE connections), DMA FIFO (over DRAM)
now part of builds, added Aurora support
* WBX: Fixed bug that prevented LO locking with 50 MHz ref clock
* pkg-config: Added boost_system
* Utils: uhd_usrp_probe can query sensors, query_gpsdo_sensors: minor fixes,
and cleanup
* Examples: Bugfixes in tx_waveforms, benchmark_rate measures timeouts,
* USB subsystem: Cleanups and minor bugfixes
* Added devtest infrastructure
* Converters: Added s8 and s16 data types
* Added more aggressive optimization strategies for FPGA builds
* Xilinx IP tool upgrade scripts cleaned up
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.9.5-0ubuntu1) ubuntu_release; urgency=low
* B200: Update DSPs after changing tick rate
* X300: Added option to disable ADC self test, prevent DAC from
underrunning
* UBX: Fixed noise issues, reduced power consumption/heat, added codes for
upcoming board revisions, force RX LNAs on (reduces rx settling time)
* WBX: Fixed rev2 and rev3 boards on X300
* Utils/Examples: Cleaned up query_gpsdo_sensors, test_dboard_coercion,
* Manual: Minor fixes and updates
* CMake: Fix lib64 detection, better platform detection, Doxygen may use shorter
filenames
* Octoclock: GPSDO-related fixes, sequence number consistency fixes, UART
fixes (off-by-one errors). uhd_usrp_probe will pick up an OC now,
added Wireshark dissector for OC packets
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.9.4-0ubuntu1) ubuntu_release; urgency=low
* GPIO control: Fix address mismatch for RX and full duplex.
This fixes full-duplex mode for most devices.
* B200: Fixed auto rate selection (can now select 61.44 Msps)
* UBX: Fix member declaration order which could cause
segfaults for debug builds
* Manual/Docs: Numerous fixes, use dot for graphs in manual
* Utils: multiple fixes for query_gpsdo_sensors, fixed floating point
comparison
* Windows: Include registry file in installation
* Converters: Improve NEON converters
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.9.3-0ubuntu1) ubuntu_release; urgency=low
* UBX: Fixed a phase synchronization issue on the sub-1GHz band
* USB: Fixed transport issue that crashed when multiple USB devices were
connected on a Windows machine, more graceful handling of USB disconnects,,
provided .cdf file for installing on Windows
* B200: Fixed memory growth/increasing tune times issue
* E300: Fixed memory leak with udev, fixed issue with autoboot value, fixes
to button behaviour
* usrp2, usrp3: Fixed IQ imbalance and DC bias in DDC chain
* CMake: Windows registry fixes
* Fixed several compiler warnings and minor bugs
* Examples: Updated benchmark_rate for improved thread safety
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.9.2-0ubuntu1) ubuntu_release; urgency=low
* E310: Added support for Speedgrade 3
* B205mini: Added support
* E310: Fixed reference counting bug
* B210: Fixed external clock reference bug for devices using ADF4002 PLLs
* B210: Fixed codec loopback test
* OctoClock: Fixed firmware burning on Windows
* B2XX, E3XX, X3XX: Easier time-syncing features. Fixes bug where B210s would
only run after issuing set_time_unknown_pps().
* X3XX: Fixed bug for IQ imbalance correction
* E310: DRAM testbenching
* Docs/Manual: Many updates and fixes
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.9.1-0ubuntu1) ubuntu_release; urgency=low
* B200mini: Updated udev rules, removed DCM
* B200: Better USB error messages
* Cores: Fixed CORDIC scaling issue on all devices that use
dsp_core_3000
* X300: Fixed GPIO issue
* Examples: Added PPS source option
* Docs: Multiple manual updates
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.9.0-0ubuntu1) ubuntu_release; urgency=low
* X300: Updated DAC ctrl, FPGA toolchain is now entirely Vivado,
improved master clock controls, added ADC self-cal capability,
prepared for revisions 7 and 8, fixed flow control issue which
could cause device to hang when receiving too many overruns
* B2XX: Auto clock rate setting, added PID/VID pairs to support
all B2XX- and derivatives, added temperature sensor, improved
DC offset and IQ imbalance correction, added AGC support,
support for FPGPIO connector on Rev6+ boards, full clock range support,
updated FX3 firmware (side-channel logging capabilities, updated
tx voltage swing, better configurability), default tick rate now
16 MHz, added B200mini support
* E3XX: Added temperature sensor, FPGA toolchain is now entirely Vivado,
improved DC offset and IQ imbalance correction, added AGC support,
improved FPGA capture interface robustness for RFIC, make frame
sizes configurable, replaced GPS control code with gpsd interfacing
capabilities
* Octoclock: Fixed bootloader + ethernet capabilities
* Compilers: Supported MSVC versions are now 2012, 2013, 2015
(dropped 2010 support), added MinGW capabilities
* Documentation: Many minor fixes and updates, merged all the
info from code.ettus.com
* UHD: Added sid_t, CHDR-specific transports now get their own
(un)packer codes, fixed a lot of compiler warnings, added
filter API (currently available for AD9361 frontend), added
soft-register API, replaced Cheetah with Mako, full Py3k
compliance, updated images downloader tool (now is one tool
for all devices), CMake minimum version is now 2.8, refactored
general AD9361 peripheral management, refactored most core
control management, added usb_error type (used by B2xx devices),
better exception handling at runtime, added C wrapper API,
new dependency: python-requests
* C API: Added to UHD (wraps C++ calls in C)
* multi_usrp: Added normalized gain setters/getters, IQ imbalance
+ DC offset correction API, filter API
* Converters: Converter symbols now exported, better logging,
removed ORC dependency, added u8 converters
* Examples: Whitespace- and other cleanup, multi-channel fixes for
some examples
* Utils: Read more property tree types from the command line
* Tools: kitchen sink updated, added mega_fft
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.8.5-0ubuntu1) ubuntu_release; urgency=low
* E3xx: Added support for battery-based E3xx device (E312),
get_freq() for network mode, fixed GPS time initialization bug
* AD9361-based devices: Fixed frequency readback bug
* B200: Fixed DCM issues, better loopback failure handling,
fix erroneous warning for custom clock rates
* X3x0: Better warnings for clock reate / ref freq
* multi_usrp: Added define for GPIO capabilities (enables
exposure in GNU Radio)
* UHD: sc16->sc16 SSE converter
* Manual: Multiple minor updates, FPGA manual improvements,
* Build System: Fixed builds on some Windows platforms, removed
stray prints
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.8.4-0ubuntu1) ubuntu_release; urgency=low
* B200: Fixed EEPROM writing bug, updated images for B200 Rev5/6
* E300: GPS antenna power defaults to staying on, GPS time used as
default if available
* UBX: PDF frequency fix on X300
* USRP2: Bugfix that allows latest UHD to work with USRP2
* Documentation: Many fixes for E300 section, added FPGA manual
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.8.3-0ubuntu1) ubuntu_release; urgency=low
* UBX: Fixed phase synchronization issues
(Related changes: Change X300 daughterboard frequency, increase
N210 FIFO depth)
* Fixed many compiler warnings
* B200: Fixed timing issues, fixed tick rate issue, stabilized
operations at high clock rates
* X300: Improved phase alignment across devices
* CMake: Build fixes
* E300: Flow control fix
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.8.2-0ubuntu1) ubuntu_release; urgency=low
* CMake: Introducing named versions for dev branches, enable static libs,
* E300: Docs updates, compat number bump, VCTCXO updates,
more status bits for ref locking, fixed serial number length fix,
RSSI Sensor
* B200: RSSI sensor
* AD9361: Better handling of different interpolation rates in FIR,
fix for gain value truncation, removed gain value offset
* UBX: Added drivers
* Manual/Docs: Numerous updates, minimum compiler versions now specified,
* Converters: Multiple fixes for sc12
* Examples: Fixes to txrx_loopback_to_file
* Path handling vastly improved, made more consistent
* Minor UHD fixes
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.8.1-0ubuntu1) ubuntu_release; urgency=low
* B2x0: Fixed PLL settings, Fixed external ref selection, serialized
streamer setup (thread-safety)
* X3x0: Fixed flow control issue, improved DAC ctrl + init logic,
Fixed I/Q alignment issue
* Generation-3 devices: Fixed LED registers
* UHD: Improved tuning logic for manual tunes
* Tools: Multiple kitchen sink fixes, coloured output
* Examples: Multiple bugfixes (multi-channel ops)
* Docs/Manual: Multiple fixes, E310 panel images
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.8.0-0ubuntu1) ubuntu_release; urgency=low
* Added E310 support
* B200/B210: Moved AD9361 controls from firmware to host
* Added several tools: ZPU dissector, improved CHDR dissector,
kitchen sink, B200/B210 USB debugging utility, latency
measurement tool.
* Reorganized firmware/ directory structure. Refactored some
firmware.
* Removed FPGA sources, is now in own repository (submoduled).
* Cleaned up command line arguments for some tools
* Added math namespace, plus a unified float comparison infrastructure
* Fixed tuning-related bugs
* Moved manual over to Doxygen, also several manual bug fixes and
amendments
* Added many missing virtual destructors (less build warnings)
* Added support for NI-RIO 14.0
* X300 fixes: Not found over PCIe with no eth interfaces
* CMake improvements: Now comes with own UHDConfig.cmake and example
to build standalone UHD apps, build fixes on Apple, interoperability
with GNU Radio
* OctoClock fixes and improvements: Ethernet initialization, external
ref detection, stability fixes, host driver (UHD can now talk to
OctoClock)
* Examples: Improved GPIO example, rx_samples_to_file
* Bumped minimum Boost version to 1.46
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.7.3-0ubuntu1) ubuntu_release; urgency=low
* Fixed examples
* Removed compiler warnings
* Fixed CBX LO settings (FRAC truncation)
* Fixed build issues for out-of-tree tools for some distros
* Fixed some logging strings (SBX, GPSDO)
* Improved logging (speedups, removed unnecessary cycles)
* Added output sync for DAC reference clocks on X300
* Multiple FPGA improvements, as well as upgrade of build env
* Added support for B200 vs B210 discovery
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.7.2-0ubuntu1) ubuntu_release; urgency=low
* Fixed X300 phase alignment issues
* Fixed CMake 2.6 incompatibility issues
* EEPROM burner improvements
* Properly flushing PCIe chain on device to prevent stale data.
* Adjusted bus clock rate in FPGA to improve timing.
* Fixed issue where FPGA would fail to load FPGA image over PCIe.
* Fixed incompatibility issue with USRP2 FPGA burner utility.
* Fixed issue where ZPU would report empty NMEA strings from GPSDO.
* Updated some functions to no longer use deprecated Boost calls.
* Fixed issue where libusb would declare 'connection refused'.
* Fixed Windows library package naming.
* Updated documentation.
* Fixed reversed TX / RX colors in X300 LED indicators.
* DBSRX2 now works properly with X300 / X310.
* Updated include files to build on older distros of Linux.
* Fixed issue with 'item32' type converter from GNU Radio.
* Fixed issue where channels on B210 would occasionally not be phase-aligned.
* Fixed problem causing channels on B210 to swap between runs.
* Fixed issue in N-Series devices causing scaling error @ 50 MSps.
* The B200 / B210 now generates an internal PPS if none is provided.
* Improved performance on PCIe for X300.
* B200 / B210 properly reports clock rate (issue with float comparison).
* Fixed issue with filter selection in B200 that caused loss of RX power.
* Removed ref lock check from X300 where it wasn't necessary.
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.7.1-0ubuntu1) ubuntu_release; urgency=low
* Fixed issue with TVRX2 divider calculation.
* Fixed issue using calibration utilities on B-Side daughterboard in an X3xx.
* Replaced unsafe `sscanf` call in utilities.
* Properly initializing N-Series clock, fixing short transient on device boot-up.
* Improved `--help` output for a number of utilities & examples.
* Improved READMEs for directories.
* Fixed X3xx documentation with some clarifications.
* UHD will now tell you if you have requested a sample rate higher than the transport can deliver.
* Removed work-around necessary in RIO kernel module for zero-copy in PCIe for X3xx devices.
* Fixed issue where X3xx devices would lock-up when on networks with lots of traffic.
* The B2xx FX3 and AD9361 source code is now in UHD.
* Numerous B2xx stability improvements.
* Fixed includes for older OSes (e.g., Fedora 14).
* Fixed includes for older versions of Boost.
* Fixed PPS detection in X3xx with multiple time sources.
* Fixed overflow reporting for X3xx utilities.
* Fixed MTU / frame size detection for X3xx devices.
* Fixed B2xx filter chain causing wrong sample rate in some circumstances.
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.7.0-0ubuntu1) ubuntu_release; urgency=low
* Introduced USRP X300 and X310 support!
* Releasing a CHDR Dissector for Wireshark analysis
* Improved USRP B200 and B210 stability
* Introducing Integer-N tuning for WBX, SBX, CBX daughterboards
* Introducing support for 120 MHz versions of WBX, SBX, CBX
* Lots of new documentation
* New GPIO example for USRP X300
* Fixed threading bug in USRP B2xx code causing GQRX issue
* General UHD bug fixes & improvements
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.6.2-0ubuntu1) ubuntu_release; urgency=low
* Fixed bug in timed commands example.
* Improved compatibility for older versions of Boost.
* Fixed segmentation fault issue in converter code.
* Fixed binary-stripping for ARM builds.
* B2xx: Further improvements to code and images.
* Documentation links now installed to Start Menu in Windows.
* B2xx: More robust error checking in host code.
* B2xx: Improved error reporting.
* B2xx: Increase FPGA loading speed on USB 3
* B2xx: Re-programming FPGA without cycle now supported.
* B2xx: Larger RX SPP ceiling to support 16K transfers with larger RX FIFO in new FPGA image
* Updated internal READMEs and documentation.
* N-Series: netburner now accepts relative paths with '~'
* Completely re-written UHD Images Downloader, with numerous bug fixes and new features.
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.6.1-0ubuntu1) ubuntu_release; urgency=low
* B2xx: Fixed critical bug in 003.006.000 regarding USRP B2xx operation
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.6.0-0ubuntu1) ubuntu_release; urgency=low
* Many small fixes for bugs revealed by static analysis.
* Introduced support for the USRP B200 / B210
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.5.3-0ubuntu1) ubuntu_release; urgency=low
* E110:
** Fix FPGA Makefile build typo
* UHD:
** Fixed timespec irrational rate rounding
** Multichan streamer CPU utilization
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.5.2-0ubuntu1) ubuntu_release; urgency=low
* B100:
** Fix get send buffer timeout
* E1x0:
** Changes to bus timings for S issue
* USRP1:
** Restore broken EEPROM writing
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.5.1-0ubuntu1) ubuntu_release; urgency=low
* Misc:
** Fixes to images downloader
** Fixes to C++ net burner
** Added sleep(1) to query_gpsdo_sensors
* OSX:
** Fix for socket send code newer OS versions
* Changes from 3.4.5
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.5.0-0ubuntu1) ubuntu_release; urgency=low
* B100:
** Added timed commands feature
** Incremented FPGA compat number to 11.1
** Incremented firmware compat number to 3
* E1x0:
** Added timed commands feature
** Incremented FPGA compat number to 11.1
* USRP2/N2x0:
** Alternative stream destination on TX
** Incremented FPGA compat number to 10
* N2x0:
** Implemented timed-commands feature
** Implemented fast-commands feature
* SBX/WBX
** Tune with phase sync using timed-commands
* RFX series
** Added calibration utilities support
* General:
** SSE2 conversions for sc8 RX samples
** Added multi-threading to packet converters
** Added automatic images fetcher application
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.4.5-0ubuntu1) ubuntu_release; urgency=low
* XCVR2450:
** Added XCVR2450 rev2 support
* WBX:
** Added WBX rev4 support
* Misc:
** Fix to rx_samples_to_udp byte count
** stream command enums easy on SWIG
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.4.4-0ubuntu1) ubuntu_release; urgency=low
* Gen2
** Fix RX and TX DSP scalar adjustments
* B100/E1x0
** Fixed RX ADC IQ inversion swap
** Incremented FPGA compat number to 9.4
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.4.3-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N2x0:
** Net burner parser fix (windows)
* XCVR2450:
** Fix to disable automatic LO offset on TX
* N2x0:
** Deal with misc exceptions in net burner
* E1x0:
** Changes to add reliability to bus state machine
* USRP1:
** Shutoff the DAC on transmit EOB flags
** Revert 1st nyquist zone DAC calculation
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.4.2-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N2x0:
** Card and net burner language fixes
** Net burner python v3 code fix
** Net burner IPv6 interface fix
* E1x0:
** Fix for FPGA timing issue with GPMC input
** Incremented FPGA compat number to 9.2
* B100:
** Fix USB wrapper/buffer release race condition
* USRP1:
** Fix DAC calculation for tune out of 1st nyquist zone
* General:
** Fix for recv packet handler time error check
** SIMD conversion routines priority over table look-up
** Fix undefined GCC float conversion behaviour for sc8
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.4.1-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N2x0:
** Filter out invalid broadcast replies
** Incremented FPGA compat number to 9.1
* E1x0:
** Incremented FPGA compat number to 9.1
* B100:
** FPGA fixes for USB slave FIFO interface
** Incremented FPGA compat number to 9.3
* USRP1:
** Stop thread in deconstructor for race condition
** Fixed DBSRX + USRP1 i2c lockup condition
* Gen2:
** Fix for unintentional clear in deprecated recv() call
** Fix RX DC offset call to handle negative values
* FreeBSD:
** Fixed network relay example compilation
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.4.0-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N2x0:
** 50 Msps RX/TX with sc8 mode over the wire
* B100:
** 16 Msps RX/TX with sc8 mode over the wire
* SBX/WBX:
** Added self-calibration utilities
* Gen2:
** Control RX/TX DC offset correction via API
** Control RX/TX IQ balance correction via API
** Incremented FPGA compat number to 9
* USRP1:
** Support 16Msps RX with sc8 mode over the wire
** Control RX DC offset correction via API
* Misc:
** Multiple streamers/heterogeneous rates
** Alternative host and wire data types
** Added API calls for DC offset correction
** Added API calls for IQ balance correction
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.3.2-0ubuntu1) ubuntu_release; urgency=low
* N2x0:
** Fixed TX daughterboard clocking mode
* B100:
** Tweaks for ordering of FPGA resets
* Misc:
** Device adder can parse empty values
** Updated syntax in udev rules file
** Corrections to images documentation
** Performance tweak for tx_waveforms example
** Handle EINTR on select() w/ udp transport
** Minor fixes for compiling on FreeBSD
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
## Release 003.003.001
* B100/E1x0:
** Fixed VCO bounds checking on flexible clocking
* B100:
** Fixed discovery throwing when device claimed
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.3.0-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N2x0:
** Incremented firmware image compat number to 11.0
** Re-implement internal GPSDO UART control
* E1x0:
** New GPMC/FPGA bus implementation
** Incremented FPGA compat number to 6
** Incremented module compat number to 3
** Added support for E110
** Added support for E100r4
* B100:
** Added support for B100
* USRP1:
** Re-implement LibUSB data transport
* Misc:
** Normalise time_spec for negative fractional seconds
* Gen2:
** Fix DSP rate selection clipping for very low rates
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.2.4-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N2x0:
** Resize all socket buffers (multi-channel)
* N2x0:
** Gracefully handle missing GPSDO
* USRP1:
** Fix bug with order of deconstructors
** Fix zero length send padding on commit
* XCVR2450:
** Fix LO locking at marginal frequencies
* WBX:
** Fix TX gain readback value on v3 board
* Gen2:
** Fix bounds checking on stream num samps
** Fix error using PPS_NEG in clock config
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.2.3-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N2x0:
** Fix uninitialized variable for multi-board case
** Fix deconstructor throwing on device disconnect
** Incremented FPGA image compat number to 7.3
* TVRX:
** Populated sensors property (fixed error in init)
* FPGA (gen2):
** Adjust RX DC offset correction time constant
** Restore calibration path in RX/TX frontend
* Misc:
** MB EEPROM burner workaround for compiler bugs
** Clip the reported tune range to the dboard bandwidth
** Preserve bands when calculating overall tune range
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.2.2-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N2x0:
** Always resize socket send buffer to SRAM size
** Incremented FPGA image compat number to 7.2
** Incremented firmware image compat number to 10.4
* N2x0:
** GPSDO control tweak for some devices
** Fix for erasure logic in rare bricking cases
* E100:
** Fix RX run state for GPIOs controlled by ATR
* USRP1:
** Fix for multi-channel streaming
** Fix to support 0 RX or 0 TX DSPs
* SBX:
** Corrected lower limit on frequency range
* FPGA (gen2):
** Reset CIC decimator on start of burst
* Misc:
** Fix send to return zero on empty packets
** Perform version check on liborc
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.2.1-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N-Series:
** Firmware fix to shutoff streaming when socket unreachable
** Incremented firmware image compat number to 10.3
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.2.0-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N-Series:
** Incremented FPGA image compat number to 7.1
** Incremented firmware image compat number to 10.2
** Removed mimo_mode device addr argument
** Support for rev4 N2XX motherboards
* USRP-E100:
** Removed the need for clock recovery
** Incremented FPGA image compat number to 5
** Incremented kernel module compat number to 2
** Added support for dual receive DSPs
** Async messages independent from RX path
* WBX:
** Support for rev3 daughterboards
* DBSRX2:
** Rounding fix for LO tuning error
* Packet handler:
** Overall performance improvements
** Timestamps for packet fragments
** Overflow message on dropped packets
* Conversion:
** Optional liborc conversion support
** SSE2 conversion alignment performance
** SSE2 conversion for complex doubles
* Windows:
** Performance improvements for UDP send
* Misc:
** Code reorganization with property tree
** Calibration support in gen2 FPGAs
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.1.2-0ubuntu1) ubuntu_release; urgency=low
* N-Series:
** Fix UART communication for GPSDO
* XCVR2450:
** Fix for descontructor throwing on hardware disconnect
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.1.1-0ubuntu1) ubuntu_release; urgency=low
* USRP1:
** Fixed lock up in logging facility under MSVC
* USRP2/N-Series:
** Handle exceptions thrown in device locker loop
** Connected internal GPSDO PPS signal in FPGA
* WBX
** Keep mixers on between bursts to maintain phase offsets
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.1.0-0ubuntu1) ubuntu_release; urgency=low
* USRP2/N-Series:
** Incremented FPGA compat number to 6
** Incremented firmware compat number to 10
** Created all-in-one bootloader for N-series
** Lock open devices per process
** USRP N-Series internal GPSDO Support
** Discovery works with out-of-date images
** Net and card burner: python 3.0 support
** Net burner: tkinter + windows thread fix
** Card burner: device selection validation
* USRP-E100:
** Incremented FPGA compat number to 4
** FPGA VRT packet framer correct length
** Fix auxiliary ADC read back for AD9862
** Sync TX and RX daughterbord clocks
** Fix daughterboard clock rates after re-clock event
* USRP1:
** Fix TX under remainder conditions
** Fixed RX multi-channel mapping
* Daughterboards:
** Added support for TVRX2 daughterboard
** Added support for SBX daughterboard
** Added support for WBX granddaughterboards
** Application notes for sensors and IF
* Windows:
** MinGW and Cygwin support (thanks Don)
** Fix calling convention on libusb callbacks
* Misc:
** Added logging and messaging facilities
** Deprecated API in utils/warning.hpp
** Fixed race condition in device discovery/factory
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.0.1-0ubuntu1) ubuntu_release; urgency=low
* RFX400: fix for transmit capability
* USRP1: fix for axillary ADC read
* Windows: statically link libusb
* Windows: install dll into runtime path
* Linux: automatically set LIB_SUFFIX on rh-64 systems
* USRP-E100: fix - set FPGA tick rate on re-clock event
* build: various work on build system
* build: include FPGA and firmware images in installers
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
uhd (3.0.0-0ubuntu1) ubuntu_release; urgency=low
Initial (formal) release, no changes to mention.
-- Ettus Research <packages@ettus.com> Tue, 31 Dec 2019 07:24:06 -0800
|