aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of git@ettus.sourcerepo.com:ettus/uhd into usrp_eJosh Blum2010-04-0114-212/+348
|\ | | | | | | | | Conflicts: host/include/uhd/usrp/CMakeLists.txt
| * hardcoded values for enum props, added clock get/set for simple usrpJosh Blum2010-04-016-44/+43
| |
| * Moved usrp specific things into usrp directories and namespaces.Josh Blum2010-04-016-19/+22
| | | | | | | | | | Renamed simple device to simple usrp (it was usrp specific). Moved tune helper to usrp dir for same reason.
| * moved props into usrp and multiple hpp filesJosh Blum2010-04-0112-151/+298
| |
| * Refactor ATR part of dboard interface (and some constants).Josh Blum2010-03-311-44/+31
| | | | | | | | | | | | 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.
* | filled in some gpio handling code, some mboard impl, added usrp_e_regs (like ↵Josh Blum2010-03-301-0/+1
| | | | | | | | memory map)
* | Merge branch 'master' of git@ettus.sourcerepo.com:ettus/uhd into usrp_eJosh Blum2010-03-301-4/+2
|\|
| * removed masks for ddr and gpio write in dboard interfaceJosh Blum2010-03-301-4/+2
| |
* | compiling with master merge, renamed usrp1e to usrp_eJosh Blum2010-03-302-11/+11
| |
* | Merge branch 'master' of git@ettus.sourcerepo.com:ettus/uhd into usrp_eJosh Blum2010-03-3038-373/+961
|\| | | | | | | | | | | Conflicts: host/include/uhd/usrp/dboard_id.hpp host/lib/usrp/usrp2/usrp2_impl.cpp
| * use find to discover devicesJosh Blum2010-03-303-13/+11
| |
| * Added io type and otw type for describing types.Josh Blum2010-03-305-13/+147
| |
| * Added utility methods to device addr and mac addr to make them more usable.Josh Blum2010-03-293-12/+67
| |
| * use bb_rate and if_rate to handle dxc io ratesJosh Blum2010-03-291-2/+2
| |
| * Added tune helper to utils.Josh Blum2010-03-294-4/+84
| | | | | | | | | | | | | | 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.
| * added some msvc notes, fixed line endingsJosh Blum2010-03-283-75/+80
| |
| * minor fix to wax test to get unit testing working on windows, added missing ↵Josh Blum2010-03-281-0/+2
| | | | | | | | config include to static.hpp to compile under windows
| * refactored types.hpp into types directoryJosh Blum2010-03-2716-229/+349
| |
| * Split utils.hpp into subdir with multiple files.Josh Blum2010-03-276-65/+173
| | | | | | | | | | | | | | 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
| * library loading on windows, status message tweaks, warning tweaksJosh Blum2010-03-261-1/+8
| |
| * Merge branch 'addrs' of git@ettus.sourcerepo.com:ettus/uhd into timingJosh Blum2010-03-265-3/+51
| |\ | | | | | | | | | | | | Conflicts: host/lib/usrp/usrp2/usrp2_impl.hpp
| | * added interface address discoveryJosh Blum2010-03-265-3/+51
| | |
| * | Overhaullllllled the way we do streaming. There is an odd bug whereJosh Blum2010-03-254-21/+47
| |/ | | | | | | | | | | | | | | | | 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.
| * Reorganized apps dir into utils and examples dir.Josh Blum2010-03-233-3/+3
| | | | | | | | The files get installed into the pkg data directory.
| * Added example app to receive timed samples.Josh Blum2010-03-231-0/+7
| | | | | | | | | | Added useful calls to simple device. Fixed vrt frac time usage (wrong word).
| * massaged some of the dboard callsJosh Blum2010-03-222-4/+3
| |
* | Merge branch 'master' of git@ettus.sourcerepo.com:ettus/uhd into u1e_uhdJosh Blum2010-03-2223-108/+257
|\| | | | | | | | | Conflicts: host/include/uhd/usrp/dboard_id.hpp
| * Moved typedefs from props.hpp into new file types.hpp.Josh Blum2010-03-216-50/+111
| | | | | | | | | | | | | | 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.
| * compiling under msvc (no idea if it works)Josh Blum2010-03-182-1/+1
| |
| * created config.hpp to handle export macros, added exports to public api stuffJosh Blum2010-03-1820-58/+146
| |
* | added usrp1e implementation skeleton, began filling it in...Josh Blum2010-03-181-1/+2
| |
* | Merge branch 'master' of git@ettus.sourcerepo.com:ettus/uhd into u1e_uhdJosh Blum2010-03-188-55/+46
|\|
| * got uhd almost compiling in windowze. figured out special flags. also had to ↵Josh Blum2010-03-176-26/+25
| | | | | | | | use boost stdint because its missing in visual c++, added a bunch of numeric casts to reduce warnings
| * reimplemented dict to preserve order of insertionJosh Blum2010-03-161-25/+18
| |
| * Added ability to set the subdevices in use for rx and tx dboards.Josh Blum2010-03-161-4/+3
| | | | | | | | | | This is used to calculate and set the ddc and duc muxes. Also, minor fix for burning addrs (wrong pointer....)
* | Merge branch 'master' of git@ettus.sourcerepo.com:ettus/uhd into u1e_uhdJosh Blum2010-03-1522-233/+575
|\| | | | | | | | | | | Conflicts: host/apps/CMakeLists.txt host/lib/usrp/usrp2/usrp2_impl.cpp
| * Replaced uses of wax:cast with the templated as method (like in boost ↵Josh Blum2010-03-153-31/+16
| | | | | | | | program options).
| * Ability to burn mac addr and ip addr to usrp2 (over ip/udp for now).Josh Blum2010-03-151-2/+12
| | | | | | | | Added firmware support and usrp2 burner host app.
| * Device sub classes can register themselves. Simplifies device.cpp internals.Josh Blum2010-03-154-4/+34
| | | | | | | | Added static instance macro for lazy instantiation of static variables.
| * Removed freq min and max and gain min, max, and step...Josh Blum2010-03-124-29/+17
| | | | | | | | | | 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-112-39/+36
| | | | | | | | | | | | 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-105-9/+16
| | | | | | | | | | | | 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-105-76/+180
| | | | | | | | | | Added setting time capability to the usrp2 impl. Messing with props and time specs...
| * Moved timeouts into the udp transports.Josh Blum2010-03-043-4/+15
| | | | | | | | | | | | Simplified the fast path checking in the fw, but it turns out this was not the issue. Fixed some bad bit operations with the 16sc words (dont forget sign extension). Added some more documentation to the headers....
| * Split metadata into rx and tx specific metadata.Josh Blum2010-03-033-20/+46
| | | | | | | | | | | | The rx metadata has fragment flags and the tx metatdata has burst flags. Made the io impl for usrp2 rx routine fill in the rx metatdata fragment flag. Added device documentation for send and recv in regards to fragmentation.
| * Making use of vrt lib in the usrp2 io_impl.Josh Blum2010-03-031-0/+4
| | | | | | | | Added a packet size param to the vrt pack and unpack.
| * Added a vrt library to pack and unpack from metadata.Josh Blum2010-03-022-0/+67
| | | | | | | | Added a vrt test app that packs and unpacks the data.
| * Expanded the UDP api:Josh Blum2010-03-025-23/+159
| | | | | | | | | | | | | | | | We can make simple udp transports for discovery and control. We can support a udp zero copy transport (currently just asio). Reworked the io_impl for usrp2 to work with the zero copy api. So far, all of this untested other than compiling. A cut-down vrt library is in the works to simplify the io impl.
| * Send the number of samples per datagram over the control.Josh Blum2010-03-012-2/+8
| | | | | | | | | | | | Worked on the io impl for usrp2 (added loop unrolls and 32 bit buffers). Added some vrt rx constants to the fw common used by host and fw. Removed the MTU prop and added a general device prop for num samples.
| * Recv noise with uhd.Josh Blum2010-03-012-6/+6
| |