summaryrefslogtreecommitdiffstats
path: root/lib/usrp/dboard/manager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* moved host code into host directory for clean (unambiguous) top levelJosh Blum2010-02-171-205/+0
|
* Added usrp2 impl for the guts of the usrp2 handling.Josh Blum2010-02-161-0/+2
| | | | The top level usrp2 will contain an impl and forward calls to it.
* Made use of templated dict to replace used of mapJosh Blum2010-02-121-8/+7
| | | | and to get rid of utility call.
* renamed usrp_uhd to uhdJosh Blum2010-02-091-4/+4
|
* Made get_link the only way to create nested props.Josh Blum2010-02-051-12/+24
| | | | | Removed the obj::ptr and sptr typedefs. The dboard manager now must store not the subdevs, but their proxies.
* Work on the properties framwork with wax::obj.Josh Blum2010-02-011-2/+2
| | | | Now the obj handles all 3 things in 1, properties, polymorphic container, proxy.
* added gpl license v3Josh Blum2010-01-291-0/+13
|
* Added dboard id enum.Josh Blum2010-01-291-5/+6
| | | | Moved timespec into its own header.
* Switched from indexed properties to named properties.Josh Blum2010-01-261-27/+36
| | | | | Added some new properties for getting a list of antenna names, pps sources, ref sources...
* Dboard base class that is no longer also the xcvr.Josh Blum2010-01-151-52/+46
| | | | | | | | | | | | The xcvr base inherits from this (as does rx and tx base). Added m4 macro to check for compiler flags. The configure checks flags and headers. Merged the register subdev static methods into one method that associates a dboard id with a dboard constructor. The manager code is responsible for checking this association and creating the correct subdev instances.
* Switched dboard ctor arguments with a tuple.Josh Blum2010-01-141-17/+92
| | | | | | | | Sub-classes only need to pass the single argument, makes implementation cleaner. Added a dboard registry and api for the manager. This way, one could externally register custom dboard from the api.
* Added the basic rx and tx skeleton wrapper.Josh Blum2010-01-121-13/+13
| | | | Made autotools mods so it passes distcheck.
* Added base classes for the usrp dboards to inherit.Josh Blum2010-01-121-0/+100
Added a manager class for the subdevs that will create devices, and give out proxies to handle them.