aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/simple_device.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added utility methods to device addr and mac addr to make them more usable.Josh Blum2010-03-291-25/+1
|
* use bb_rate and if_rate to handle dxc io ratesJosh Blum2010-03-291-10/+6
|
* Added tune helper to utils.Josh Blum2010-03-291-71/+3
| | | | | | | Takes a subdevice and dxc properties object and tunes them. Made use of tune helper in simple device. Moved gain handler into utils header dir.
* refactored types.hpp into types directoryJosh Blum2010-03-271-3/+2
|
* Split utils.hpp into subdir with multiple files.Josh Blum2010-03-271-2/+2
| | | | | | | 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
* Overhaullllllled the way we do streaming. There is an odd bug whereJosh Blum2010-03-251-11/+2
| | | | | | | | | a zero length command (now, no chain) used to stop the streaming. Now it seems to do the reverse... must investigate. Made all clock configuration into enums. The strings were painful and there cant be that many variations that enums cant cover them. The enums will make more sense to developers than mystery strings.
* Added example app to receive timed samples.Josh Blum2010-03-231-0/+16
| | | | | Added useful calls to simple device. Fixed vrt frac time usage (wrong word).
* Added ability to load modules at runtimeJosh Blum2010-03-211-1/+0
| | | | | (specified by environment variable path). Added a demo test module as well.
* Moved typedefs from props.hpp into new file types.hpp.Josh Blum2010-03-211-24/+9
| | | | | | | 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/+10
|
* Replaced uses of wax:cast with the templated as method (like in boost ↵Josh Blum2010-03-151-27/+27
| | | | program options).
* Removed freq min and max and gain min, max, and step...Josh Blum2010-03-121-34/+22
| | | | | replaced it with gain and freq range tuples. This simplifies the api calls and subdev properties.
* Filled in dboard code for basics and lf type boards.Josh Blum2010-03-101-2/+12
| | | | | | 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.
* Added simple device to handle wrapping general properties up into simple api.Josh Blum2010-03-101-0/+303
Added setting time capability to the usrp2 impl. Messing with props and time specs...