aboutsummaryrefslogtreecommitdiffstats
path: root/host
Commit message (Collapse)AuthorAgeFilesLines
...
* | logging: Demoted a number of DEBUG messages to TRACEMartin Braun2017-04-0530-54/+49
| |
* | device3: Fixed potential concurreny issuesAshish Chaudhari2017-04-058-16/+21
| | | | | | | | | | | | | | - Protected block_ctrl vector with a mutex - Note: const block accessors are not thread safe - Removed sid_framer from base device3 class - Made x300,e300 sid_framers atomic
* | multi_usrp: Removed ordering req. from prop_tree path accessAshish Chaudhari2017-04-051-6/+18
| | | | | | | | | | | | | | - Path getters for mboard, rx_dsp and tx_dsp concat the numeric channel to the tree path instead of indexing a list. This allows for easier multi threaded tree construction because values can be placed in the tree in a random order.
* | uhd: Fix minor typoDerek Kozel2017-04-041-1/+1
| |
* | Merge branch 'maint'Martin Braun2017-03-314-46/+295
|\|
| * NI-RIO: FIFO management optimizations for PCIe performancePatrick Sisterhen2017-03-294-46/+295
| | | | | | | | | | | | | | Pre-acquiring as much buffer as possible When acquiring during a streaming operation, acquire a minimum amount (frame size) or the amount we know is acquire-able Adding docstrings to nirio_fifo Making const-qualifying consistent
* | rfnoc: minor fix to radio_ctrl.hpp for rx_bandwidth controlsEJ2017-03-281-1/+1
| |
* | rfnoc: Fixed docstring of get_time_now()Martin Braun2017-03-241-1/+1
| |
* | Merge branch 'maint'Martin Braun2017-03-249-23/+324
|\|
| * docs: Further clarification on CHDRMartin Braun2017-03-242-13/+19
| |
| * max2871: fix for not writing register 0 when requiredMark Meserve2017-03-211-0/+6
| |
| * UDP: Set default socket buffer size to number of frames * 9000 (maximum ↵michael-west2017-03-212-8/+11
| | | | | | | | Ethernet MTU)
| * examples: Revised frequency hopping example for best practicesLogan Fagg2017-03-211-126/+114
| |
| * examples: Created TwinRX frequency hopping examplenate.temple2017-03-212-0/+296
| |
| * msvc build: set compile_flags instead of add_definitionsMark Meserve2017-03-211-2/+2
| |
| * docs: document common exceptions occuring in multi_usrp::makeAndrej Rode2017-03-211-0/+2
| |
* | RFNoC: Exposed LO sharing functions in radio blockDerek Kozel2017-03-245-0/+359
| |
* | Firmware: fix failures due to fw_comm_protocol.h pathPaul David2017-03-222-4/+4
| |
* | rfnoc: Add API calls for time/clock controlMartin Braun2017-03-213-1/+83
| |
* | Merge branch 'maint'Martin Braun2017-03-151-5/+1
|\|
| * x300: Put back runtime error on FPGA compat mismatchMartin Braun2017-03-151-5/+1
| |
* | Merge branch 'maint'Martin Braun2017-03-151-1/+1
|\|
| * x300: Removed MTU throttling for Ethernet connectionsMartin Braun2017-03-081-1/+1
| |
* | Clarifying build gnu-radio stepsSteven Bingler2017-03-061-0/+1
| |
* | Merge branch 'maint'Martin Braun2017-03-016-23/+245
|\|
| * docs: Added FPGA functional verification proceduresJonathon Pendlum2017-03-011-0/+208
| |
| * examples: Replaced throw with exit() in sync_to_gpsMartin Braun2017-02-271-1/+2
| |
| * C API: Implement set_time_source_out and fix typoHendrik Vogt2017-02-271-1/+11
| |
| * examples: Added some more error strings to test_messagesMartin Braun2017-02-271-4/+4
| |
| * Fix max values for MOD2 and FRAC2Mark Meserve2017-02-201-2/+2
| |
| * Revise calculation of ADF5355 FRAC2 registerMark Meserve2017-02-201-7/+4
| | | | | | | | | | Corrected residue formula Fixed cast to uint16_t that was behaving differently in msvc14 32-bit vs 64-bit
| * C API: Added missing fields to USRP infoMartin Braun2017-02-201-0/+2
| |
| * uhd: Fix C API LO controlsMartin Braun2017-02-201-4/+4
| |
| * cores: unhide virtual overloaded functions in gpio_atr_3000Andrej Rode2017-02-201-0/+4
| |
| * docs: escape /* to silence doxygen while compilingAndrej Rode2017-02-201-5/+5
| |
* | Rfnoc: Exposed analog lowpass bandwidth option in X300 ctrlsejk2017-02-275-0/+43
| |
* | e100: cleanup dangling UHD_LOG macrosAndrej Rode2017-02-271-15/+11
| |
* | utils: provide fallback to previous loglevel on reading environment/definesAndrej Rode2017-02-231-9/+13
| |
* | Merge branch 'maint'Martin Braun2017-02-201-1/+5
|\|
| * UBX: Add UHD_SAFE_CALL for MAX287x dectructor to prevent terminatemichael-west2017-02-161-1/+5
| |
* | utils: introduce new logging API and remove msg APIAndrej Rode2017-02-20176-1414/+1387
| |
* | uhd: Replace NULL with nullptr in if_addrs and super_recv_packet_handlerAndrej Rode2017-02-202-7/+7
| | | | | | | | | | This is not a functional change, but it marks the usage of nullptr in UHD. Commits past this one may also use this C++11 feature.
* | n230: Fold in module fka usrp3_fw_ctrl_ifaceMartin Braun2017-02-208-35/+34
| |
* | uhd: Replace clocking_mode_t unscoped enum with scoped versionMartin Braun2017-02-175-8/+8
| | | | | | | | | | This is not a functional change, but it marks the usage of scoped enums in UHD. Commits past this one may also use this C++11 feature.
* | uhd: Undo some of the BOOST_FOREACH() replacementsMartin Braun2017-02-135-24/+28
| | | | | | | | | | | | In public headers, we're going back to BOOST_FOREACH. Thus, not every user needs to build their own project with the same compilers that we do.
* | X3xx: Limit the number of USRPs that can initialize in parallelPaul David2017-02-132-7/+18
| |
* | UDP transport: Utilize poll instead of selectPaul David2017-02-131-0/+12
| | | | | | | | | | | | - Avoids the descriptor limit of 1024 on FD_SETSIZE - Fixes a buffer overflow due to that limit - Keeps select around for Windows compatibility
* | device: Removed deprecated functionalityPaul David2017-02-103-204/+10
| | | | | | | | | | - Some of the functions, such as get_max_recv_samps_per_packet, throw on RFNoC enabled devices like the X300 - Deprecated functions should not stay in the codebase
* | uhd: replace BOOST_FOREACH with C++11 range-based for loopAndrej Rode2017-02-10133-467/+396
| | | | | | | | | | Note: This is the first commit that uses for-range, and range-based for-loops are now usable for UHD development.
* | init_usrp: add c++11 flags to compiler if availableAndrej Rode2017-02-101-0/+19
| |