aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
Commit message (Collapse)AuthorAgeFilesLines
...
* usrp: update multi usrp header to use complete subdev specsJosh Blum2011-07-221-3/+3
|
* uhd: forward declare property tree in device so gnuradio swig cant complainJosh Blum2011-07-201-2/+3
|
* uhd: add get_tree call directly to the deviceJosh Blum2011-07-201-0/+4
| | | | | | Does away with the need for wax cast to get the tree. You can still do this but it will eventually be removed. There was some compiler issue on ubuntu 10.04 with any cast and a shared ptr to property tree.
* uhd: added tasks to simplify thread spawning use casesJosh Blum2011-07-132-0/+54
|
* uhd: added subtree capability to property treeJosh Blum2011-07-082-6/+7
|
* usrp: updated documentation for various changes (mimo mode, subdevice spec ↵Josh Blum2011-07-011-5/+0
| | | | defaults)
* uhd: misc tweaks and also msvc compileJosh Blum2011-06-292-5/+14
|
* usrp: deleted a bunch on obsoleted files in usrp directoryJosh Blum2011-06-2911-549/+37
|
* uhd: make sure things are initializedJosh Blum2011-06-292-0/+7
|
* uhd: properties tweaks and docsJosh Blum2011-06-292-14/+31
|
* uhd: loopback working on usrp2Josh Blum2011-06-291-6/+4
|
* uhd: added properties unit tests, use shared ptr<void> in treeJosh Blum2011-06-282-24/+7
|
* uhd: work getting multi-usrp workingJosh Blum2011-06-281-3/+10
|
* uhd: re-work to make the properties easier to useJosh Blum2011-06-285-119/+153
|
* usrp2: restored discovery and most of io_implJosh Blum2011-06-271-4/+3
|
* usrp: populate a tree from a subdevJosh Blum2011-06-273-1/+12
|
* usrp2: work on setting up controllersJosh Blum2011-06-272-1/+11
|
* usrp: created cores for the rx and tx dspJosh Blum2011-06-261-1/+14
|
* uhd: created uart iface to inherit fromJosh Blum2011-06-252-15/+23
|
* uhd: forgot to commit properties fileJosh Blum2011-06-252-0/+78
|
* uhd: created a property tree to store propertiesJosh Blum2011-06-253-4/+9
|
* uhd: work on templated property classJosh Blum2011-06-252-0/+82
|
* uhd: added dynamic throw and clone to exceptionsJosh Blum2011-06-241-0/+33
|
* UHD: GPS work.Nick Foster2011-06-171-7/+7
| | | | | | | * Rewrote NMEA acquisition to be more general * Added GPS sensors instead of member fns for data access * GPS sensors added to mboard sensors to keep ABI compat * VITA time initialized to GPS time on init
* uhd: tweak for bounded buffer pop elemJosh Blum2011-06-171-7/+7
|
* uhd: added host to/from worknet conversion to byteswap headerJosh Blum2011-06-162-1/+23
|
* b100: added b100 host (squashed)Josh Blum2011-06-141-1/+20
|
* UHD: added item32<->sc16 conversions in OrcNick Foster2011-06-141-1/+1
|
* UHD: Fixed convert_test (scalars backwards), fixed Orc conversions ↵Nick Foster2011-06-141-1/+1
| | | | (endianness backwards).
* uhd: added scaling factor to conversion routinesJosh Blum2011-06-141-1/+1
|
* uhd: made all bounded_buffer methods forced inlineJosh Blum2011-06-141-7/+7
|
* uhd: tweaks to log and msg implementationJosh Blum2011-06-012-2/+10
| | | | | | The implementations now contain the string stream in each instance. This way there is not a global stringstream to lock access to. This resolves the issue of nested log calls locking condition.
* uhd: picked some minor changes from super packet handlerJosh Blum2011-05-201-0/+2
|
* uhd: removed deprecated warning API, log+msg now in APIJosh Blum2011-05-185-77/+3
|
* uhd: replace managed buffer shared pointer w/ intrusive pointer to reduce ↵Josh Blum2011-05-141-2/+29
| | | | overhead
* uhd: work on logging and message facility initializationJosh Blum2011-05-131-1/+1
|
* uhd: various tweaks to log and msg, replaced a few remaining stdioJosh Blum2011-05-043-16/+6
|
* uhd: removed more iostream stuff from usrp* implementationsJosh Blum2011-05-042-0/+2
|
* uhd: replaced warning post with calls to UHD_MSG(warning)Josh Blum2011-05-046-8/+87
| | | | | The message api can support warnings, error, and status messages. The default handler is to stdio, but the user can change this.
* uhd: replaced many conditional prints with UHD_LOG usageJosh Blum2011-05-041-1/+2
|
* uhd: tweaks for logger file entriesJosh Blum2011-05-041-8/+9
|
* uhd: moved the logger into the utils subdirJosh Blum2011-05-043-4/+8
|
* uhd: added configurable default log level and thread safetyJosh Blum2011-05-041-2/+29
|
* uhd: work on the backend for a logging facilityJosh Blum2011-05-042-0/+65
|
* usrp2: added REF_MIMO and PPS_MIMO for USRP2 clock configJosh Blum2011-05-031-0/+2
| | | | | | | | | Basically, one can tell a MIMO master to lock to MIMO ref and/or time. This is an alternative to the mimo_mode=slave/master device args. When using this alternative, one should always set the mimo_mode to maser. When in master mode, any clock config settings can be used. When in slave mode, the clock config setting are forced to MIMO_REF/PPS
* uhd: fixed typo in tune request/result inter_freq -> rf_freqJosh Blum2011-05-012-13/+9
| | | | | | | | For some reason, the code said intermediate frequency, however, it was used and treated as RF frequency. It was always intended to be the RF frequency, but was misnamed due to a cognitive distortion.
* USRP2: Added GPS time support to the sensors interface. gps_time sensor ↵Nick Foster2011-04-291-0/+6
| | | | returns epoch time as time_t. Untested.
* usrp: support for grand daughter board eepromJosh Blum2011-04-261-0/+1
|
* uhd: use int() casts on enum constants to help swig2 parse it as intJosh Blum2011-04-205-31/+31
|
* uhd: specify msvc for implementations known only to work on msvcJosh Blum2011-04-042-4/+4
|