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
|
uhd (3.13.1.0-3) unstable; urgency=high
* Fix armhf shell test syntax
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 15 Jan 2019 00:08:48 -0500
uhd (3.13.1.0-2) unstable; urgency=high
* Debian armhf needs NEON_SIMD_ENABLE=OFF
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 11 Jan 2019 16:43:32 -0500
uhd (3.13.1.0-1) unstable; urgency=high
* New upstream stable release
-- A. Maitland Bottoms <bottoms@debian.org> Thu, 10 Jan 2019 10:51:45 -0500
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 support 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> Wed, 09 Jan 2019 04:46:44 -0800
uhd (3.13.1.0~rc1-3) experimental; urgency=medium
* update to v3.13.1.0-rc1-1-gd3b7e90ae
* build with default Python3 and boost copmponents (Closes: #914983)
* Update compat level to enable parallel builds (Closes: #914322)
* build with ninja
-- A. Maitland Bottoms <bottoms@debian.org> Thu, 29 Nov 2018 00:47:43 -0500
uhd (3.13.1.0~rc1-2) experimental; urgency=medium
* Correct path to UHDTargets.cmake
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 09 Nov 2018 20:46:00 -0500
uhd (3.13.1.0~rc1-1) experimental; urgency=medium
* New upstream pre-release, ABI bump
There have been 86 commits since the 3.13.0.2 release
* Use Debian package version, not git describe
* Install static libuhd.a with libuhd-dev
* Modern CMake patch applied - provide exported targets UHD::uhd
-- A. Maitland Bottoms <bottoms@debian.org> Sun, 04 Nov 2018 13:11:59 -0500
uhd (3.13.0.2-1) experimental; urgency=medium
* New upstream release
* mpm: mg: move init_rf_cal before JESD de/framer bringup
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 22 Aug 2018 15:06:37 -0400
uhd (3.13.0.2-0ubuntu1) trusty; 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, 14 Aug 2018 03:57:45 -0800
uhd (3.13.0.1-2) experimental; urgency=medium
* debug and fix broken python3-uhd build for libboost_python-py36
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 15 Aug 2018 12:23:59 -0400
uhd (3.13.0.1-1) experimental; urgency=medium
* New upstream release
upload to experimental first to start ABI migration
* ENABLE_PYTHON_API in debian/rules
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 07 Aug 2018 19:00:13 -0400
uhd (3.13.0.1-0ubuntu1) trusty; 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, 14 Aug 2018 03:57:45 -0800
uhd (3.13.0.0-0ubuntu1) trusty; 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, 14 Aug 2018 03:57:45 -0800
uhd (3.12.0.0-3) unstable; urgency=medium
* ENABLE_RFNOC in debian/rules
-- A. Maitland Bottoms <bottoms@debian.org> Mon, 25 Jun 2018 15:02:24 -0400
uhd (3.12.0.0-2) unstable; urgency=medium
* upload to unstable
-- A. Maitland Bottoms <bottoms@debian.org> Thu, 07 Jun 2018 22:19:53 -0400
uhd (3.12.0.0-1) experimental; urgency=medium
* New upstream release
upload to experimental first to start ABI migration
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 06 Jun 2018 13:23:58 -0400
uhd (3.12.0.0-0ubuntu1) trusty; 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
-- Ettus Research <packages@ettus.com> Tue, 5 Jun 2018 10:38:00 -0800
uhd (3.11.1.0-1) unstable; urgency=medium
* New upstream release
* update watch file
-- A. Maitland Bottoms <bottoms@debian.org> Mon, 21 May 2018 00:05:20 -0400
uhd (3.11.1.0-0ubuntu1) trusty; 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> Wed, 16 May 2018 10:05:17 -0800
uhd (3.11.0.1-1) unstable; urgency=medium
* New upstream release
* use_SOURCE_DATE_EPOCH patch
-- A. Maitland Bottoms <bottoms@debian.org> Sat, 31 Mar 2018 09:45:31 -0400
uhd (3.11.0.1-0ubuntu1) trusty; 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> Wed, 28 Mar 2018 03:28:36 -0800
uhd (3.11.0.0-1) experimental; urgency=medium
* Debian build
* Install rfnoc xml block descriptions with libuhd-dev
* PDF documentation in /usr/share/doc/uhd-host/doxygen/latex/refman.pdf.gz
* ABI/API changes from 3.10.3.0-2 using abi-compliance-checker in
/usr/share/doc/libuhd-dev/libuhd-dev_3.11.0.0-1_report.html
-- A. Maitland Bottoms <bottoms@debian.org> Mon, 05 Mar 2018 21:49:24 -0500
uhd (3.11.0.0-0ubuntu1) trusty; 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> Mon, 05 Mar 2018 10:48:10 -0800
uhd (3.10.3.0-2) unstable; urgency=medium
* Undo botched shlibs setting (Closes: #889894)
-- A. Maitland Bottoms <bottoms@debian.org> Thu, 08 Feb 2018 20:14:46 -0500
uhd (3.10.3.0-1) unstable; urgency=medium
* New upstream release
* update debian/libuhd-dev.abi.tar.gz.amd64
* Keep Doxygen's jquery.js (Closes: #887510)
* 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 descriptor limits
Fix build with Boost 1.66
Add EEPROM info to dboard_base class so daughterboard code can access all
EEPROM info
-- A. Maitland Bottoms <bottoms@debian.org> Sat, 03 Feb 2018 15:57:57 -0500
uhd (3.10.2.0-3) unstable; urgency=medium
* update to release_003_010_002_000-3-g122bfae1a
x300 impl: fix bytes/s for 1GigE
C API: Dboard EEPROM revision error handling fix
UDP transport: Utilize poll instead of select
* Doxygen FULL_PATH_NAMES = NO
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 21 Nov 2017 00:30:26 -0500
uhd (3.10.2.0-2) unstable; urgency=medium
* avoid gcc 7 and armhf neon for now (Closes: 873608)
by bringing back debian-armhf-convert-without-neon patch
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 05 Sep 2017 18:48:41 -0400
uhd (3.10.2.0-1) unstable; urgency=medium
* update Debian copyright
* uhd-host suggests fdisk (Closes: 872136)
* change library package name and soname on every API and ABI change
* allow UHD library and utilities to be in separate lib directories
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 23 Aug 2017 01:21:30 -0400
uhd (3.10.2.0-0ubuntu1) trusty; 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> Mon, 31 Jul 2017 02:37:48 -0800
uhd (3.10.1.1-1) unstable; urgency=medium
* change library package name and soname on every API and ABI change
* allow UHD library and utilities to be in separate lib directories
* debian upload
-- A. Maitland Bottoms <bottoms@debian.org> Sun, 07 May 2017 10:41:14 -0400
uhd (3.10.1.1-0ubuntu1) trusty; 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> Thu, 26 Jan 2017 04:15:56 -0800
uhd (3.10.1.0-1) experimental; urgency=medium
* New upstream release
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 04 Nov 2016 19:21:30 -0500
uhd (3.10.1.0-0ubuntu1) trusty; 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> Wed, 02 Nov 2016 01:20:07 -0800
uhd (3.10.0.0-1) unstable; urgency=medium
* New upstream release, update to release_003_010_000_000-1-g7fbf0e5
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 12 Aug 2016 18:32:12 -0400
uhd (3.10.0.0-0ubuntu1) trusty; 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> Thu, 11 Aug 2016 04:48:49 -0800
uhd (3.9.5-2) unstable; urgency=medium
* update to release_003_009_005-30-gdde6c90
* revert upstream d53fd56 commit (Closes: #837504)
-- A. Maitland Bottoms <bottoms@debian.org> Sat, 08 Oct 2016 16:45:28 -0400
uhd (3.9.5-1) unstable; urgency=medium
* New upstream release
-- A. Maitland Bottoms <bottoms@debian.org> Mon, 29 Aug 2016 17:20:19 -0400
uhd (3.9.4-5) unstable; urgency=medium
* avoid neon asm code on armhf
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 26 Aug 2016 23:29:17 -0400
uhd (3.9.4-4) unstable; urgency=medium
* update to UHD-3.9.LTS) 003_009_005_rc1
The value of constant UHD_VERSION has been changed from 30904 to 30905.
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 24 Aug 2016 23:26:43 -0400
uhd (3.9.4-3) unstable; urgency=medium
* update to release_003_009_004-29-ge1139b2
-- A. Maitland Bottoms <bottoms@debian.org> Sun, 03 Jul 2016 20:16:24 -0400
uhd (3.9.4-2) unstable; urgency=medium
* revert Build-Depends-Indep change
-- A. Maitland Bottoms <bottoms@debian.org> Thu, 05 May 2016 23:34:12 -0400
uhd (3.9.4-1) unstable; urgency=medium
* New upstream release
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
-- A. Maitland Bottoms <bottoms@debian.org> Thu, 05 May 2016 19:46:38 -0400
uhd (3.9.3-2) unstable; urgency=medium
* update to release_003_009_003-12-g62f80e2
Added missing stdint.h include
Unroll the loops in the NEON float to-from integer c
cmake Added installation of .reg file
utils Updated query_gpsdo_sensors
query_gpsdo_sensors fixed sleep time
ubx Changed member declaration to satisfy debug build
Removed mention of OSX PPC support
Updated URL for USRP image files
Fixed spelling errors mostly in documentation
gpio core Fixed a mismatch in the address assignment
cmake Enable use of dot for Doxygen
* Enable use of dot for Doxygen in Debian .doc package build
-- A. Maitland Bottoms <bottoms@debian.org> Mon, 11 Apr 2016 15:12:01 -0400
uhd (3.9.3-1) unstable; urgency=medium
* New upstream release
* Add C API to debian/patches/uhd-platform-hurd-kfreebsd
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 29 Mar 2016 21:11:24 -0400
uhd (3.9.3-0ubuntu1) trusty; 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> Mon, 21 Mar 2016 11:40:26 -0800
uhd (3.9.2-3) unstable; urgency=medium
* update to release_003_009_002-27-gccc8acb
x300: Added power cycle message to uhd_image_loader
Added <cstddef> includes to support more platforms
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 11 Mar 2016 15:42:34 -0500
uhd (3.9.2-2) unstable; urgency=medium
* update to release_003_009_002-21-gf212665
B200: Fix for increasing retune times
Corrected the UHD behavior in the event of a USB disconnect
UBX: Phase synchronization
* build with ENABLE_GPSD OFF (Closes: #811916)
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 09 Mar 2016 11:33:47 -0500
uhd (3.9.2-1) unstable; urgency=medium
* more robust postinst (Closes: #808863)
* New upstream release
* 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
* 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
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 30 Dec 2015 21:18:59 -0500
uhd (3.9.2~rc1-1) unstable; urgency=medium
* New upstream release candidate
* uhd_images_downloader now depends upon python-requests
* B205mini: Added support
-- A. Maitland Bottoms <bottoms@debian.org> Sun, 27 Dec 2015 10:09:56 -0500
uhd (3.9.1-5) unstable; urgency=medium
* update to release_003_009_001-17-g36c8e0f
examples-Fixed-error-code-variable-in-rx_samples_c
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 18 Nov 2015 21:46:15 -0500
uhd (3.9.1-4) unstable; urgency=medium
* update to release_003_009_001-14-geebbc01
* updated patch display-correct-downloader-path (Closes: #772412)
-- A. Maitland Bottoms <bottoms@debian.org> Mon, 02 Nov 2015 12:10:40 -0500
uhd (3.9.1-3) unstable; urgency=medium
* use dh_makeshlibs -V 'libuhd003 (>= 3.9)'
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 30 Sep 2015 22:25:33 -0400
uhd (3.9.1-2) unstable; urgency=medium
* update to release_003_009_001-3-gfee054d
* use Breaks instead of Conflicts with older gnuradio, gr-osmosdr
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 29 Sep 2015 21:49:36 -0400
uhd (3.9.1-1) unstable; urgency=low
* New upstream release, updated udev rules
-- A. Maitland Bottoms <bottoms@debian.org> Sun, 13 Sep 2015 10:23:00 -0400
uhd (3.9.0-3) unstable; urgency=medium
* drop dh_acc to get reproducible builds
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 11 Sep 2015 22:37:50 -0400
uhd (3.9.0-2) unstable; urgency=low
* fix FTBFS:
use dh_acc and abi-compliance-checker just on amd64
revise uhd-platform-hurd-kfreebsd patch
-- A. Maitland Bottoms <bottoms@debian.org> Mon, 07 Sep 2015 19:35:50 -0400
uhd (3.9.0-1) unstable; urgency=medium
* New upstream release, update to release_003_009_000-13-g01ed9b3
* build with libgps, gpsd support
* use aarch64.patch from https://bugzilla.redhat.com/show_bug.cgi?id=1200836
(Sorry Adam, thanks Marcin!)
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 01 Sep 2015 22:08:38 -0400
uhd (3.8.5-3) unstable; urgency=low
* acknowledge NMU changes
* update to release_003_008_005-11-g7a86523
-- A. Maitland Bottoms <bottoms@debian.org> Thu, 27 Aug 2015 20:25:15 -0400
uhd (3.8.5-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Rename library packages for g++5 ABI transition (closes: 794878).
-- Julien Cristau <jcristau@debian.org> Sun, 16 Aug 2015 17:55:53 +0200
uhd (3.8.5-2) unstable; urgency=medium
* update to release_003_008_005-10-g3dbced2
* Added NI B2x0 VID/PID pairs to udev rules in Debian uhd-host package.
* 0099-revert-neon-changes.patch: Revert the NEON changes from upstream
commit 1b149f561370687ad65e3aa644a402f00dbd16ea to fix build on arm64.
(Thanks Adam!) (Closes: #794906)
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 07 Aug 2015 23:49:20 -0400
uhd (3.8.5-1) unstable; urgency=medium
* New upstream release
with maint branch patches:
docs-Updated-X3x0-unbricking-procedure-info
docs-Added-paragraph-on-GPIO-maximum-current-3.3V-su
e3xx-Fix-firmware-to-actually-write-fuse-values
e3xx-doc-Explain-autoboot-configuration
e3xx-Make-frame-sizes-configurable
e3xx-docs-Add-a-paragraph-on-network-configuration
docs-Added-X3x0-LEDs-table
Added-NI-B2x0-VID-PID-pairs-to-udev-rules
* New upstream path code (closes: #772412)
* Debian patches:
for Debian Hurd and kFreeBSD support
for reproducible builds: Doxygen HTML_TIMESTAMP = NO
* Debian source package uses multiple tarballs to match
upstream use of git with a submodule.
* remove unused build-dependency on liboil0.3-dev (Closes: #793627)
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 05 Aug 2015 00:41:49 -0400
uhd (3.7.3-1) unstable; urgency=low
* New upstream release
-- A. Maitland Bottoms <bottoms@debian.org> Mon, 06 Oct 2014 09:21:14 -0500
uhd (3.7.2-1) unstable; urgency=low
* New upstream release
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 20 Aug 2014 17:33:06 -0500
uhd (3.7.1-2) unstable; urgency=low
* Apply maint branch fixes through release_003_007_001-49-gdf4cf6d
* Fix B2xx udev rules
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 01 Jul 2014 22:34:32 -0400
uhd (3.7.1-1~bpo70+1) wheezy-backports; urgency=low
* Rebuild for wheezy-backports.
* Breaks gnuradio 3.6.3.2-1 in wheezy, needed by gnuradio 3.7.3 backport.
* New upstream release
* Include USRP NetworkManager configuration
* Include additional bugfix patches from git maint branch
* 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
* b200: Fixed bug in rx_dsp_core_3000 that would assume 3 halfbands
and X300 settings interface.
* Include patch from Avery Pennarun (Closes: #739852)
* Conflicts with earlier versions on gnuradio (Closes: #733690)
* Completely re-written UHD Images Downloader, with bug fixes, new features.
-- A. Maitland Bottoms <bottoms@debian.org> Sat, 24 May 2014 20:33:59 -0400
uhd (3.7.1-1) unstable; urgency=low
* New upstream release
* Include USRP NetworkManager configuration
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 22 Apr 2014 21:16:32 -0400
uhd (3.7.0-3) unstable; urgency=low
* update to release_003_007_000-72-gb6f1253
* reduce boost dependency to components listed in host/CMakelists.txt
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 08 Apr 2014 22:02:04 -0400
uhd (3.7.0-2) unstable; urgency=low
* Include additional bugfix patches from git maint branch
-- A. Maitland Bottoms <bottoms@debian.org> Sat, 29 Mar 2014 20:01:30 -0400
uhd (3.7.0-1) unstable; urgency=low
* New upstream release
* 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
* b200: Fixed bug in rx_dsp_core_3000 that would assume 3 halfbands
and X300 settings interface.
* Include patch from Avery Pennarun (Closes: #739852)
* Conflicts with earlier versions on gnuradio (Closes: #733690)
-- A. Maitland Bottoms <bottoms@debian.org> Sun, 23 Feb 2014 17:48:29 -0500
uhd (3.6.2-1) unstable; urgency=low
* New upstream release
* Completely re-written UHD Images Downloader, with bug fixes, new features.
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 21 Jan 2014 09:43:19 -0500
uhd (3.6.2~rc2-1) experimental; urgency=low
* New upstream release candidate
-- A. Maitland Bottoms <bottoms@debian.org> Sat, 14 Dec 2013 09:56:03 -0500
uhd (3.6.2~rc1-1) experimental; urgency=low
* New upstream release candidate
-- A. Maitland Bottoms <bottoms@debian.org> Thu, 05 Dec 2013 16:18:28 -0500
uhd (3.5.5-1) unstable; urgency=low
* New upstream release
Nicholas Corgan:
uhd_images_downloader: fixes/improvements, redundancy fixes,
better error handling, more descriptive error when MD5 check fails
lib: dbsrx2 bugfix
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 20 Nov 2013 21:48:35 -0500
uhd (3.5.4-4) unstable; urgency=low
* update to git 6bb62ea (head of maint branch) to fix BUG #203
Michael Dickens (1):
utils: fix declaration of "env_path_sep" such that it is always
initialized before it is used in the "get_env_paths" function, by
moving it from the global scope to inside that function. This
change allows UHD_STATIC_BLOCK(load_modules) to work correctly.
Michael West (1):
BUG #203: Initialized gain values to 0.0
Nicholas Corgan (3):
cmake: fixed UHD_IMAGES_DIR behavior to include directories
inside specified images directory
Updated images downloader URL
docs: added info on libusbx for Windows
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 13 Nov 2013 19:20:05 -0500
uhd (3.5.4-3) unstable; urgency=low
* Fix syntax to avoid failing test on powerpc
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 29 Oct 2013 09:30:06 -0400
uhd (3.5.4-2) unstable; urgency=low
* Avoid failing test on powerpc
* Add pkg-config dependency to help find liborc
-- A. Maitland Bottoms <bottoms@debian.org> Mon, 28 Oct 2013 21:07:40 -0400
uhd (3.5.4-1) unstable; urgency=low
* New upstream release
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 27 Sep 2013 23:43:51 -0400
uhd (3.5.3-1) unstable; urgency=low
* New upstream release
UHD source includes man pages now
Moved usrp_n2xx_simple_net_burner and usrp2_card_burner into bin
* Add watchfile (Closes: #702937)
* Add USRP B100 2500:0002 to udev rules (Closes: #705509)
* No more uhd_install_firmware, use uhd_images_downloader (Closes: #654637)
-- A. Maitland Bottoms <bottoms@debian.org> Sat, 26 May 2013 22:41:47 -0400
uhd (3.5.2-1) experimental; urgency=low
* New upstream release
B100:
Fix get send buffer timeout
E1x0:
Changes to bus timings for S issue
USRP1:
Restore broken EEPROM writing
* Plus fixes
E110:
Fix FPGA Makefile build typo
UHD:
Fixed timespec irrational rate rounding
Multichan streamer CPU utilization
-- A. Maitland Bottoms <bottoms@debian.org> Mon, 22 Apr 2013 22:30:53 -0400
uhd (3.5.1-1) experimental; urgency=low
* New upstream release
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
* Upload to experimental during wheezy freeze
-- A. Maitland Bottoms <bottoms@debian.org> Sun, 27 Jan 2013 23:33:25 -0500
uhd (3.5.0-1) experimental; urgency=low
* New upstream release
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
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 09 Jan 2013 14:24:11 -0500
uhd (3.4.4-1) experimental; urgency=low
* New upstream release
* Gen2
Fix RX and TX DSP scalar adjustments
* B100/E1x0
Fixed RX ADC IQ inversion swap
Incremented FPGA compat number to 9.4
-- A. Maitland Bottoms <bottoms@debian.org> Thu, 18 Oct 2012 13:21:54 -0400
uhd (3.4.3-1) experimental; urgency=low
* New upstream release
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
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 05 Sep 2012 21:55:04 -0400
uhd (3.4.2-1) unstable; urgency=low
* New upstream release
* USRP2/N2x0:
o Card and net burner language fixes
o Net burner python v3 code fix
o Net burner IPv6 interface fix
* E1x0:
o Fix for FPGA timing issue with GPMC input
o Incremented FPGA compat number to 9.2
* B100:
o Fix USB wrapper/buffer release race condition
* USRP1:
o Fix DAC calculation for tune out of 1st nyquist zone
* General:
o Fix for recv packet handler time error check
o SIMD conversion routines priority over table look-up
o Fix undefined GCC float conversion behaviour for sc8
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 23 May 2012 20:50:59 -0400
uhd (3.4.1-1) unstable; urgency=low
* New upstream release
* USRP2/N2x0:
o Filter out invalid broadcast replies
o Incremented FPGA compat number to 9.1
* E1x0:
o Incremented FPGA compat number to 9.1
* B100:
o FPGA fixes for USB slave FIFO interface
o Incremented FPGA compat number to 9.3
* USRP1:
o Stop thread in deconstructor for race condition
o Fixed DBSRX + USRP1 i2c lockup condition
* Gen2:
o Fix for unintentional clear in deprecated recv() call
o Fix RX DC offset call to handle negative values
* FreeBSD:
o Fixed network relay example compilation
-- A. Maitland Bottoms <bottoms@debian.org> Sat, 21 Apr 2012 21:40:35 -0400
uhd (3.4.0-3) unstable; urgency=low
* include upstream fix bsd compilation for network relay example
(Closes: #667079)
* use liborc again, revert 3.4.0-2 changes.
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 04 Apr 2012 22:43:26 -0400
uhd (3.4.0-2) unstable; urgency=low
* Build without liborc to hunt bugs in convert_test
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 03 Apr 2012 11:43:02 -0400
uhd (3.4.0-1) unstable; urgency=low
* New upstream release
* USRP2/N2x0:
o 50 Msps RX/TX with sc8 mode over the wire
* B100:
o 16 Msps RX/TX with sc8 mode over the wire
* SBX/WBX:
o Added self-calibration utilities
* Gen2:
o Control RX/TX DC offset correction via API
o Control RX/TX IQ balance correction via API
o Incremented FPGA compat number to 9
* USRP1:
o Support 16Msps RX with sc8 mode over the wire
o Control RX DC offset correction via API
* Misc:
o Multiple streamers/heterogeneous rates
o Alternative host and wire data types
o Added API calls for DC offset correction
o Added API calls for IQ balance correction
* Improved description (Closes: #658355)
-- A. Maitland Bottoms <bottoms@debian.org> Sat, 23 Mar 2012 08:34:48 -0400
uhd (3.3.2-3) unstable; urgency=low
* more robust postinst (Closes: #656119)
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 17 Jan 2012 11:05:15 -0500
uhd (3.3.2-2) unstable; urgency=low
* improved uhd-host package
- include manual documentation
- configure sysctl and pam limits settings
* Add README.Debian
* upload to unstable
-- A. Maitland Bottoms <bottoms@debian.org> Wed, 11 Jan 2012 13:37:13 -0500
uhd (3.3.2-1) experimental; urgency=low
* New upstream release
* Packaged for Debian (Closes: #644789)
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 10 Jan 2012 00:18:49 -0500
uhd (3.3.1-1) experimental; urgency=low
* Keep up, rebase package with release_003_003_001 tag
-- A. Maitland Bottoms <bottoms@debian.org> Sat, 12 Nov 2011 20:00:49 -0500
uhd (3.2.4-1) unstable; urgency=low
* New upstream release
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 07 Oct 2011 21:45:37 -0400
uhd (3.2.3-1) experimental; urgency=low
* Keep up, rebase package with release_003_002_003 tag
-- A. Maitland Bottoms <bottoms@debian.org> Tue, 20 Sep 2011 12:17:13 -0400
uhd (3.2.1-1) experimental; urgency=low
* Package from upstream git
-- A. Maitland Bottoms <bottoms@debian.org> Fri, 5 Aug 2011 19:12:07 -0500
|