aboutsummaryrefslogtreecommitdiffstats
path: root/host
Commit message (Collapse)AuthorAgeFilesLines
* B200: added support for reading the exact product name from EEPROM for B200 ↵Neel Pandeya2014-09-251-0/+15
| | | | and B210
* Updated images URL for 3.7.3RC1003_007_003_rc1Martin Braun2014-09-251-3/+2
|
* docs: Changed Xilinx ISE version from 14.4 to 14.7Ashish Chaudhari2014-09-241-24/+24
|
* x300: Added output sync for DAC reference clocksMartin Braun2014-09-241-0/+1
|
* uhd: Fixed logging bug (#476) -- UHD logging has unexplained effect on ↵michael-west2014-09-243-43/+53
| | | | | | | packet loss. - Removed logging from radio_ctrl_core_3000 - Changed logging facility to prevent type conversion when message is not logged
* sbx: Fixed logging string (showed TX instead of RX)Martin Braun2014-09-241-1/+1
|
* uhd: Added an operator/ for (fs_path, size_t)Martin Braun2014-09-233-0/+28
| | | | | | | | | | | | | This is useful when constructing property tree paths. With this path, the following code would be valid: size_t mb_index = 0; fs_path mb_root = "/mboards"; mb_root = mb_root / mb_index; This is a shortcut for the (in UHD very common) mb_root = mb_root / boost::lexical_cast<std::string(mb_index);
* usrp: don't print duplicate GPSDO detection messagesNicholas Corgan2014-09-233-6/+1
|
* cbx: Fixed LO FRAC truncationMartin Braun2014-09-231-4/+6
|
* x300_dboard_iface: added UHD_UNUSED() macro to unused parameters in ↵Nicholas Corgan2014-08-291-1/+1
| | | | | | set_clock_enabled() * Removes GCC warning about unused parameters
* uhd: Added a stop stream cmd to the rx exampleMartin Braun2014-08-271-0/+3
|
* fixup! uhd: updated images url for UHD 3.7.2 releaserelease_003_007_002Ashish Chaudhari2014-08-201-1/+1
|
* uhd: updated images url for UHD 3.7.2 releaseAshish Chaudhari2014-08-201-2/+2
|
* Bumping FPGA compat to 7.michael-west2014-08-181-1/+1
|
* Changed analog delay on DAC reference and radio clocks from 1075ps to 900psmichael-west2014-08-181-4/+4
|
* - Fixes for channel alignmentmichael-west2014-08-185-56/+42
| | | | | | | | | | - Added analog delay for radio clock - Added analog delay for DAC reference clocks - Removed resetting of clock control - Removed setting of reference clock and PPS to external sources during initialization - Fixes for set_time_unknown_pps - Removed wait for PPS edge after setting time from GPSDO - Changed set_time_unknonw_pps to time out based on system time rather than device VITA time
* cmake: fixed FindORC logic, was allowing usage of versions below minimumNicholas Corgan2014-08-141-1/+1
|
* Restoring compatibility with CMake 2.6Nicholas Corgan2014-08-147-24/+26
| | | | | * The UNSET command didn't exist back then, but using SET with no value does the same thing * CMake 2.6 doesn't like nested parantheses in IF statements, so tweak IF/ELSE statements
* cmake: add UHD version to NSIS installer titleNicholas Corgan2014-08-051-1/+2
|
* Updated documentationNicholas Corgan2014-07-3114-22/+22
| | | | | * Updated UHD documentation-related URL's after manual overhaul * Updated NI-USRP URL to link to NI-USRP 1.3
* usrp_burn_mb_eeprom: write all changes to the EEPROM at onceNicholas Corgan2014-07-311-2/+3
| | | | * Utility was unnecessarily wearing out EEPROMs by calling separate writes for each key
* Merge branch 'maint' into uhd/bug492michael-west2014-07-3013-56/+174
|\ | | | | | | | | Conflicts: host/lib/usrp/b200/b200_impl.cpp
| * tx fe corrections: fixing mixed tabs / spaces, other horrible whitespace cruftBen Hilburn2014-07-252-14/+11
| |
| * Merge 'maint' into x300/bug513Ben Hilburn2014-07-254-6/+7
| |\
| | * Updated images package info for UHD 3.7.2 rc1003_007_002_rc1Nicholas Corgan2014-07-231-1/+1
| | | | | | | | | | | | * MD5sum from commit 6ca920485a30034cc4673d382fd37ff7a719c3e4 is invalid
| | * Updated UHD version and images URL+MD5sum for 3.7.2 rc1Nicholas Corgan2014-07-232-3/+3
| | |
| | * Commented out warning if X300 reference clock fails to lock within 1 second ↵michael-west2014-07-221-2/+3
| | | | | | | | | | | | during initialization. Sometimes it takes longer and that is OK.
| | * Fix for BUG #517: B200: Regression of power level on RXmichael-west2014-07-221-1/+1
| | | | | | | | | | | | - Fixed scalar for RX DSP core
| * | X300: Added UHD support for TX FEIan Buckley2014-07-182-1/+14
| |/
| * Updated copyright year.michael-west2014-07-171-1/+1
| |
| * Fix for BUG #469michael-west2014-07-171-0/+2
| | | | | | | | - Added mutex for write_uart()
| * - Changed variables from uint8_t to uint32_t so parsing of hex strings would ↵michael-west2014-07-171-3/+3
| | | | | | | | work properly.
| * Addressing comments from review.michael-west2014-07-172-15/+21
| | | | | | | | | | | | - Corrected types of some variables to be boost types. - Removed debugging code accidentally left in. - Changed some compiled out error messages to log messages.
| * Fix for BUG #469: Bad/Empty GPS NMEA strings returned when the queries are ↵michael-west2014-07-172-20/+108
| | | | | | | | | | | | | | | | | | made in a random wait iterative fashion Fix for BUG #460: X300: GPGGA sensor most often empty, while RMC is usually OK - Added checksum verification of NMEA strings - Improved handling of short or malformed strings - Fixed GPSDO data synchronization between X300 firmware and host
| * Merge branch 'origin/b200/bug516' into maintBen Hilburn2014-07-171-4/+4
| |\ | | | | | | | | | Fixing B200 clock rate float compare.
| | * BUG #516: B210: Fails to Run with 30.72 MHz Clockmichael-west2014-07-101-1/+1
| | | | | | | | | | | | - Addressed feedback from review.
| | * Fix for BUG #516: B210: Fails to Run with 30.72 MHz Clockmichael-west2014-06-181-3/+3
| | | | | | | | | | | | - Corrected clock rate checks for B2x0
| | * Fix for BUG #516: B210: Fails to Run with 30.72 MHz Clockmichael-west2014-06-181-3/+3
| | | | | | | | | | | | - Corrected clock rate checks for B2x0
| * | Merge branch 'origin/ashish/rx_pcie_overflows' into maintBen Hilburn2014-07-172-3/+7
| |\ \
| | * \ Merge branch 'maint' into ashish/rx_pcie_overflowsAshish Chaudhari2014-07-154-4/+4
| | |\ \
| | * | | x300: Bugfix for overflows on PCIe at 200MS/sAshish Chaudhari2014-06-272-3/+7
| | | |/ | | |/|
| * | | Merge branch 'origin/b200/bug512' into maintBen Hilburn2014-07-171-9/+15
| |\ \ \ | | | | | | | | | | | | | | | B200 now creates internal PPS. Depends on FPGA change.
| | * | | Enhancement #512: B210: Need an Internal PPSmichael-west2014-06-131-9/+15
| | | | | | | | | | | | | | | | | | | | - Added support for internal PPS selection (set as default)
| * | | | Fix for BUG #527: N200: 50 Msps results in two tonesmichael-west2014-07-011-1/+2
| | |_|/ | |/| | | | | | | | | | - Adjusted check to enable first half-band filter only if the rate is decimated enough between the CIC and other half-band filter
| * | | Fixing help text for --ref argument in some examples. Reported by MarcusBen Hilburn2014-06-304-4/+4
| | |/ | |/| | | | | | | Mueller.
* / | Fix for BUG #492: UHD: set_time_unknown_pps() fails with GPSDO installedmichael-west2014-06-253-3/+17
|/ / | | | | | | - Added polling for PPS time change after setting time from GPSDO.
* | Merge branch 'origin/b200/bug500' into maint - Fixing B200 phase alignment issueBen Hilburn2014-06-163-3/+9
|\ \
| * | - Changed XOR to OR for REG_DSP_RX_MUX flags.michael-west2014-06-121-3/+3
| | |
| * | Fix for BUG #500: B210: RX channels are not phase alignedmichael-west2014-06-063-3/+9
| | | | | | | | | | | | - Adding UHD side code to invert second RX channel
* | | Fix issue with "item32" registered size, Bug 466.Ben Hilburn2014-06-131-0/+3
|\ \ \ | |_|/ |/| |