aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/dboard
Commit message (Collapse)AuthorAgeFilesLines
...
* | Replaced the dboard base constructor args with an opaque type.Josh Blum2010-05-023-18/+18
| |
* | fixed windows warningsJosh Blum2010-04-261-4/+4
|/
* Added RSSI readback to XCVR2450.Josh Blum2010-04-261-0/+17
| | | | also fixed spi readback typo in u2 iface
* Renamed the prop set/get error macros so they make sense for not-implemented ↵Josh Blum2010-04-263-12/+12
| | | | properties.
* added lock detect status to dboardsJosh Blum2010-04-263-0/+41
|
* prefixed the ASSERT_THROW macro with UHD for the sake of namespaceJosh Blum2010-04-263-11/+11
|
* Work on exceptions.Josh Blum2010-04-253-21/+20
| | | | | Added props exception macro to make the set/get prop switch statements easier. Made use of boost throw exception macro for throw-site information in throw assert.
* XCVR seems to be working, fixed the spi reset routine.Josh Blum2010-04-231-7/+15
|
* XCVR tweaks, working in highband and lowband.Josh Blum2010-04-231-6/+17
| | | | Also, fixed the tx mux calculation.
* xcvr tweaks and fixes, needs real testingJosh Blum2010-04-221-18/+24
|
* filled in xcvr tuning, set gain, spi resetJosh Blum2010-04-221-14/+151
|
* added regs for max2829Josh Blum2010-04-221-12/+17
|
* added dboard app notesJosh Blum2010-04-221-1/+2
|
* work on atr registers and filling in functionsJosh Blum2010-04-211-14/+108
|
* xcvr work, skeleton layoutJosh Blum2010-04-212-1/+332
|
* RFX seems to be tuning. Added some code to dsp to check for valid range.Josh Blum2010-04-161-49/+67
|
* work on rfx registersJosh Blum2010-04-151-10/+78
|
* work on tuning rfx tx and rx LOsJosh Blum2010-04-141-27/+75
|
* removed some windows warningsJosh Blum2010-04-141-2/+2
|
* Added gain control to rfx. Switched string constants to caps (gains, ↵Josh Blum2010-04-142-14/+39
| | | | | | antennas, subdevs). Made dboard interface for aux dac and adc use volts.
* work on atr bits in rfx boardJosh Blum2010-04-141-11/+21
|
* renamed dboard interface to dboard iface, the lengthy name was getting to be ↵Josh Blum2010-04-141-14/+14
| | | | a burden
* work on rfx atr regsJosh Blum2010-04-131-1/+30
|
* merged unit type and gpio bank for dboard interface into one type, expanded ↵Josh Blum2010-04-121-1/+1
| | | | dboard clock config api
* moved spi transact to usrp2 impl, and removed spi readJosh Blum2010-04-121-1/+1
|
* generate the register file, added lib include dirJosh Blum2010-04-092-353/+0
|
* Reworked the spi part of the dboard interface.Josh Blum2010-04-071-11/+5
| | | | | | It turns out to be more complicated. The integer type is better for holding the bits. The edges can be different, so the spi config hold 2 edge setting for mosi and miso.
* added code for adf4360 chipJosh Blum2010-04-063-2/+380
|
* Merge branch 'master' of git@ettus.sourcerepo.com:ettus/uhd into rfxJosh Blum2010-04-061-28/+16
|\
| * GPIO tested working on usrp.Josh Blum2010-04-051-26/+14
| | | | | | | | | | Write gpio regs in 32 bit chunks. ATR regs rx side is high address.
| * paradigm shift for the dsp abstractionJosh Blum2010-04-051-4/+4
| |
* | some work on rfx board codeJosh Blum2010-04-022-15/+301
|/
* moved props into usrp and multiple hpp filesJosh Blum2010-04-011-1/+1
|
* Refactor ATR part of dboard interface (and some constants).Josh Blum2010-03-311-2/+2
| | | | | | Added peek and poke to the dude/bro protocol. Started moving more control code through peek and poke. Added usrp_regs.hpp to be like memory map for slave perifs.
* removed masks for ddr and gpio write in dboard interfaceJosh Blum2010-03-301-2/+2
|
* refactored types.hpp into types directoryJosh Blum2010-03-271-13/+13
|
* Split utils.hpp into subdir with multiple files.Josh Blum2010-03-271-2/+3
| | | | | | | static for static block and static instance (singleton) assert for assertion and throwing related stuff algorithm for my addons to std::algorithm (has) and a new one, safe main, for having a main catch-all
* massaged some of the dboard callsJosh Blum2010-03-221-2/+2
|
* Moved typedefs from props.hpp into new file types.hpp.Josh Blum2010-03-211-0/+1
| | | | | | | Created structs to replace range tuples, and clock config struct. Merged clock config props into one property using config struct. Added templated dict construction to use the assign::map_list_of. Added gcc flag to set visibility to hidden and use the api macro.
* changes to get tuning workingJosh Blum2010-03-161-2/+6
|
* reimplemented dict to preserve order of insertionJosh Blum2010-03-161-2/+2
|
* Added ability to set the subdevices in use for rx and tx dboards.Josh Blum2010-03-161-1/+1
| | | | | This is used to calculate and set the ddc and duc muxes. Also, minor fix for burning addrs (wrong pointer....)
* Replaced uses of wax:cast with the templated as method (like in boost ↵Josh Blum2010-03-151-8/+8
| | | | program options).
* Device sub classes can register themselves. Simplifies device.cpp internals.Josh Blum2010-03-151-4/+4
| | | | Added static instance macro for lazy instantiation of static variables.
* Removed freq min and max and gain min, max, and step...Josh Blum2010-03-121-28/+16
| | | | | replaced it with gain and freq range tuples. This simplifies the api calls and subdev properties.
* Cleaned up the gain handler (thing that gets and sets wildcard gains)Josh Blum2010-03-111-2/+2
| | | | | | and made use of it in the dboard manager so it intercepts the sets and gets. While doing this, fixed something with nested links in wax obj. Added some useful macros and templates to the utils.
* Filled in dboard code for basics and lf type boards.Josh Blum2010-03-102-68/+267
| | | | | | The dboard is now just a uint16 (dont bother with the enums). The dboard manager now registers subdevs with a name. The basic board code uses a static block to register itself.
* Moved lib and include contents of dboard and mboard one directory up and ↵Josh Blum2010-02-216-446/+10
| | | | | | prefixed them with dboard_ and mboard_. And yes, the code is compiling.
* Added special case for empty dboard slot (none id 0xffff)Josh Blum2010-02-183-32/+69
| | | | | | Added error handling in the dboard base classes for mishandling the none id. Added better to string function for the dboard ids. Added get methods for dboard classes to get their ids.
* Worked out spi api for the dboard interface.Josh Blum2010-02-172-0/+38
| | | | Created usrp2 spi transaction control on host and fw