aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp2/dsp_impl.cpp
Commit message (Collapse)AuthorAgeFilesLines
* usrp: moved stream cmd word calculation into common dsp utilsJosh Blum2010-07-071-1/+0
|
* usrp2: split mboard impl into its own class, usrp2 device can instantiate N ↵Josh Blum2010-07-051-10/+10
| | | | mboard impls for mimo setup (works with 1 for now)
* Created a common usrp dsp utils to handle register word calculations.Josh Blum2010-06-071-56/+7
| | | | (also switched to boost endian define to avoid c compiler check)
* moved dsp update logic into prop setter, added code to init dsp rates and freqsJosh Blum2010-06-041-34/+26
|
* usrp2 regs naming conventionJosh Blum2010-06-041-6/+6
|
* Merge branch 'shrinkfw' into usrp2Josh Blum2010-05-101-3/+0
|\
| * Added reload flag to the stream cmd.Josh Blum2010-04-281-3/+0
| | | | | | | | | | This reloads the last command to handle continuous streaming in hardware. Moved rx control register setup and stream command issuing to the host.
* | Inverted logic in halfband selectionJason Abele2010-05-041-2/+6
| |
* | added hb filter calculation on usrp2 dsp implJosh Blum2010-05-041-4/+16
|/
* Renamed the prop set/get error macros so they make sense for not-implemented ↵Josh Blum2010-04-261-4/+4
| | | | properties.
* prefixed the ASSERT_THROW macro with UHD for the sake of namespaceJosh Blum2010-04-261-1/+1
|
* Work on exceptions.Josh Blum2010-04-251-4/+6
| | | | | 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.
* RFX seems to be tuning. Added some code to dsp to check for valid range.Josh Blum2010-04-161-9/+6
|
* Created a usrp2 interface class with the control, spi, peek/poke functionality.Josh Blum2010-04-131-6/+7
| | | | Its used in all the implementation level code
* simplified the usage of dboard, dsp, and mboard proxies.Josh Blum2010-04-051-2/+2
| | | | removed the dict structure for each, we are just going to have one.
* paradigm shift for the dsp abstractionJosh Blum2010-04-051-170/+80
|
* added 16 bit peek and poke, 16 bit register defs for gpios and atrsJosh Blum2010-04-051-6/+6
|
* extended stream cmd with mode enum, and extended fragment flags in metadataJosh Blum2010-04-031-6/+24
|
* moved props into usrp and multiple hpp filesJosh Blum2010-04-011-0/+2
|
* use defined constants for the register addressesJosh Blum2010-04-011-17/+6
|
* Moved dsp (rx and tx), time config, and clock config (mostly) into the host.Josh Blum2010-03-311-26/+30
|
* use bb_rate and if_rate to handle dxc io ratesJosh Blum2010-03-291-4/+14
|
* refactored types.hpp into types directoryJosh Blum2010-03-271-3/+3
|
* Split utils.hpp into subdir with multiple files.Josh Blum2010-03-271-1/+1
| | | | | | | 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-29/+13
| | | | | | | | | 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 install path for dll, fixed idiotic msvc error where making a vector ↵Josh Blum2010-03-191-2/+2
| | | | with proxies crashes the app, seems to be ok with the sptr fix, in other good news, discover usrps works in my vm for the usrp2
* got uhd almost compiling in windowze. figured out special flags. also had to ↵Josh Blum2010-03-171-8/+15
| | | | use boost stdint because its missing in visual c++, added a bunch of numeric casts to reduce warnings
* Replaced uses of wax:cast with the templated as method (like in boost ↵Josh Blum2010-03-151-12/+12
| | | | program options).
* Added simple device to handle wrapping general properties up into simple api.Josh Blum2010-03-101-10/+11
| | | | | Added setting time capability to the usrp2 impl. Messing with props and time specs...
* Moved timeouts into the udp transports.Josh Blum2010-03-041-3/+6
| | | | | | 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....
* Making use of vrt lib in the usrp2 io_impl.Josh Blum2010-03-031-1/+1
| | | | Added a packet size param to the vrt pack and unpack.
* The net common is too slow in usrp2 firmware to figure out if its vrt data.Josh Blum2010-03-021-6/+1
| | | | | Added a custom function to tell if a packet is vrt data, seems to be feeding fast enough at this rate... Fixed some buffer size calculation logic.
* Send the number of samples per datagram over the control.Josh Blum2010-03-011-6/+10
| | | | | | 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-011-1/+11
|
* Moved lib and include contents of dboard and mboard one directory up and ↵Josh Blum2010-02-211-0/+293
prefixed them with dboard_ and mboard_. And yes, the code is compiling.