aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | | | | | usrp1: Remove hard coded clock valuesThomas Tsou2010-08-162-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Get clock values from clock control, where the master setting lives.
| | * | | | | | | | | | usrp1: Remove error message for unsupported ATR registersThomas Tsou2010-08-161-4/+2
| | | | | | | | | | | |
| | * | | | | | | | | | usrp1: Setup dboard interface dualityThomas Tsou2010-08-161-42/+63
| | |/ / / / / / / / /
| | * | | | | | | | | usrp1: compiling with the latest nextJosh Blum2010-08-163-13/+19
| | | | | | | | | | |
| | * | | | | | | | | Merge branch 'next' into usrp1_nextJosh Blum2010-08-1510-211/+272
| | |\ \ \ \ \ \ \ \ \
| | * | | | | | | | | | usrp1: add skeleton code for setting subdev specJosh Blum2010-08-153-3/+35
| | | | | | | | | | | |
| | * | | | | | | | | | usrp1: created daughterboard dualityJosh Blum2010-08-159-183/+246
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | everything that should have two is now stored into a dictionary of slot to type the set and get functions are now bound with a third argument for dboard slot the dboard iface has yet to be completed with the correct registers for a vs b
| | * | | | | | | | | | usrp1: compiling off next branchJosh Blum2010-08-1510-68/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | made usb checking changes implemented named_prop_t::extract change copied the remainder of the codec pga gain control
| | * | | | | | | | | | Merge branch 'next' into usrp1Josh Blum2010-08-153-4/+6
| | |\ \ \ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ \ \ Merge branch 'next' into usrp1Josh Blum2010-08-1523-218/+275
| | |\ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | usrp1: Add usrp1 implementationThomas Tsou2010-08-1318-0/+3292
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | usrp1: Cmake changes to find libusb-1.0Josh Blum2010-08-132-0/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FindUSB1.cmake file imported from the libFTDI project, http://www.intra2net.com/en/developer/libftdi
| | * | | | | | | | | | | | usrp1: Add libusb-1.0 implementations of USB interfacesThomas Tsou2010-08-132-0/+1092
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | usrp1: Add USB transport interfacesThomas Tsou2010-08-135-0/+192
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds generic interfaces for control and zero-copy transport of data between the host and a slave device. The interfaces are separate and generic to accommodate multiple implementations that may include cross platform libraries such as libusb or a platform specific implementation such as Linux usbfs.
| | * | | | | | | | | | | | usrp1: Add SPI transaction command to FX2 firmwareThomas Tsou2010-08-134-3/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The existing SPI read command is set for half-duplex 8-bit or 16-bit writes followed by an equivalent sized read. This patch adds a new command, VRQ_SPI_TRANSACT, which performs a full-duplex transaction up to 4-bytes. Since the data buffer of the USB control transfer is not available for outbound data on IN requests, the 4 bytes of write data are sent through the request parameters. Enables are sent in the previsouly unused high byte of the length parameter. The USB field mappings are shown below. Only rising edge and MSB operation is supported. Field (8-bit) Description ===== ===== bmRequestType 0x80 (USB Device IN request) bRequest 0x83 (VRQ_SPI_TRANSACT) wValueH OUT data(0) wValueL OUT data(1) wIndexH OUT data(2) wIndexL OUT data(3) wLengthH SPI enables wLengthL Number of bytes to transfer (1-4) EP0BUF IN data
| | * | | | | | | | | | | | usrp1: Add FX2 firmware filesThomas Tsou2010-08-13107-0/+11421
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These firmware files for the usrp1 are imported from GNURadio.
| * | | | | | | | | | | | | Merge branch 'ise12' into nextJosh Blum2010-08-313-29/+23
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | |
| | * | | | | | | | | | | | clean up DAC inversion and swapping to match schematicsMatt Ettus2010-08-251-3/+6
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Clean up iq swapping on RX. It is now swapped in the top level.Matt Ettus2010-08-253-27/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | widened muxes to 4 bits to match tx side and handle more ADCs in future
| | * | | | | | | | | | | | Merge branch 'features' into tx_policyMatt Ettus2010-08-172-3/+6
| | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * features: added compat number to usrp2 readback mux makefile dependency fix for second expansion
| * | | | | | | | | | | | | | uhd: sine table for tx waveformsJosh Blum2010-08-311-4/+15
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | usrp2: flush the error flow messages, issue the stop before register ↵Josh Blum2010-08-312-7/+7
| | |_|_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | configure to align count
| * | | | | | | | | | | | | uhd: added interleave/de-interleave type conversion routinesJosh Blum2010-08-304-20/+166
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | uhd: fixed short conversion (IQ swap) and added test between short/floatJosh Blum2010-08-303-8/+105
| | |_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | |
| * | | | | | | | | | | | Merge branch 'pps_test' into nextJosh Blum2010-08-303-0/+105
| |\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | |
| | * | | | | | | | | | | Created pps_test example and docsJason Abele2010-08-273-0/+105
| | | | | | | | | | | | |
| * | | | | | | | | | | | basic-tx: added docs for new subdevicesJosh Blum2010-08-261-1/+5
| | | | | | | | | | | | |
| * | | | | | | | | | | | basic-tx: mirror the rx subdevices for basic tx boards as wellJosh Blum2010-08-261-14/+18
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge branch 'mux'Josh Blum2010-08-263-65/+23
| |\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | |
| | * | | | | | | | | | | Merge branch 'convert_types' into muxJosh Blum2010-08-252-78/+202
| | |\ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | usrp2: changes to mux calculation routine and usrp2 fpga compat numberJosh Blum2010-08-253-65/+23
| | | |/ / / / / / / / / / | | |/| | | | | | | | | |
| * | | | | | | | | | | | uhd: switched the IQ order interpretation for convert typesJosh Blum2010-08-251-37/+29
| | |/ / / / / / / / / / | |/| | | | | | | | | |
| * | | | | | | | | | | uhd: convert types corrected for little endian, created SSE2 float/short ↵Josh Blum2010-08-242-78/+202
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | conversion for no-swap case
* | | | | | | | | | | Removing the GPS search stuff until I have time to figure out why the ↵Nick Foster2010-08-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | firmware side keeps timing out.
* | | | | | | | | | | Merge branch 'master' of ettus.sourcerepo.com:ettus/uhdpriv into usrp2pNick Foster2010-08-256-73/+100
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: host/include/uhd/usrp/simple_usrp.hpp host/lib/usrp/simple_usrp.cpp
| * | | | | | | | | | usrp: added get dboard iface to simple wrapper, and set gpio debug to dboard ↵Josh Blum2010-08-234-0/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | iface
| * | | | | | | | | | basic: better errors for invalid antenna selectionJosh Blum2010-08-231-4/+4
| | | | | | | | | | |
| * | | | | | | | | | uhd: removed msvc warnings and errors (no M_PI)Josh Blum2010-08-201-3/+4
| | | | | | | | | | |
| * | | | | | | | | | uhd: tx waveform generates on the fly nowJosh Blum2010-08-201-54/+57
| | | | | | | | | | |
* | | | | | | | | | | Change to get codec_impl to compile, dur.Nick Foster2010-08-252-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed memory map to correspond to new tx_policy code.
* | | | | | | | | | | Merge branch 'master' of ettus.sourcerepo.com:ettus/uhdpriv into usrp2pNick Foster2010-08-201-20/+45
|\| | | | | | | | | |
| * | | | | | | | | | uhd: tx waveform change how error is measuredJosh Blum2010-08-201-2/+3
| | | | | | | | | | |
| * | | | | | | | | | uhd: work on tx waveforms to make it more accurateJosh Blum2010-08-191-19/+43
| | |_|_|_|_|_|_|_|/ | |/| | | | | | | |
* | | | | | | | | | Merge branch 'master' of ettus.sourcerepo.com:ettus/uhdpriv into usrp2pNick Foster2010-08-1911-160/+271
|\| | | | | | | | |
| * | | | | | | | | uhd: added image utils code to search the images paths for image filesJosh Blum2010-08-197-17/+87
| | | | | | | | | |
| * | | | | | | | | uhd: replaced tx continuous app with tx waveform app (siggen example app)Josh Blum2010-08-193-114/+148
| | | | | | | | | |
| * | | | | | | | | usrp: rethrow validate subdev spec errors with additional infoJosh Blum2010-08-181-29/+36
| | | | | | | | | |
* | | | | | | | | | Merge branch 'usrp2p_udpfw' of ettus.sourcerepo.com:ettus/uhdpriv into usrp2pNick Foster2010-08-1813-411/+489
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Moved UDP firmware update stuff out of fw_common.h into udp_fw_update.h.Nick Foster2010-08-189-113/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This stuff should only go back into fw_common.h if we decide to integrate firmware update into the UHD code. Right now it's a separate Python script. Also moved udp_fw_update.h to lib/ because it's the same between USRP2 and USRP2P.
| * | | | | | | | | | Removed debugging print from usrp2p_fw_update.pyNick Foster2010-08-171-1/+1
| | | | | | | | | | |