aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/lib/mykonos/config
Commit message (Collapse)AuthorAgeFilesLines
* mpm: Apply clang-format against all .cpp and .hpp filesMartin Braun2020-03-031-2/+4
|
* uhd: mpm: update all license header w/ "-or-later"Brent Stapleton2019-03-081-1/+1
| | | | Updating all SPDX license identifiers to include "-or-later"
* uhd: mpm: apply clang-format to all filesBrent Stapleton2019-01-167-540/+932
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Applying formatting changes to all .cpp and .hpp files in the following directories: ``` find host/examples/ -iname *.hpp -o -iname *.cpp | \ xargs clang-format -i -style=file find host/tests/ -iname *.hpp -o -iname *.cpp | \ xargs clang-format -i -style=file find host/lib/usrp/dboard/neon/ -iname *.hpp -o -iname *.cpp | \ xargs clang-format -i -style=file find host/lib/usrp/dboard/magnesium/ -iname *.hpp -o -iname *.cpp | \ xargs clang-format -i -style=file find host/lib/usrp/device3/ -iname *.hpp -o -iname *.cpp | \ xargs clang-format -i -style=file find host/lib/usrp/mpmd/ -iname *.hpp -o -iname *.cpp | \ xargs clang-format -i -style=file find host/lib/usrp/x300/ -iname *.hpp -o -iname *.cpp | \ xargs clang-format -i -style=file find host/utils/ -iname *.hpp -o -iname *.cpp | \ xargs clang-format -i -style=file find mpm/ -iname *.hpp -o -iname *.cpp | \ xargs clang-format -i -style=file ``` Also formatted host/include/, except Cpp03 was used as a the language standard instead of Cpp11. ``` sed -i 's/ Cpp11/ Cpp03/g' .clang-format find host/include/ -iname *.hpp -o -iname *.cpp | \ xargs clang-format -i -style=file ``` Formatting style was designated by the .clang-format file.
* mpm: Update all license headersMartin Braun2018-02-197-14/+14
| | | | | - Fix typo in company name (missing 'a') - Updated SPDX license identifier to version 3.0
* mpm: ad9371: Enable separate RX1/RX2 enable pinsTrung N Tran2018-02-081-2/+2
| | | | | | For each channel, we have individual enable input trigger. Reviewed-by: Martin Braun <martin.braun@ettus.com>
* mpm: mg: Pass deserializer_lane_xbar to ad937x_configTrung N Tran2018-01-122-3/+3
| | | | | | | | | Slot A and Slot B are different in how the JESD lanes are connected. We now pass in different deserializer_lane_xbar config values for each slot. Reviewed-by: Martin Braun <martin.braun@ettus.com> Reviewed-by: Daniel Jepson <daniel.jepson@ettus.com> Reviewed-by: Mark Meserve <mark.meserve@ni.com>
* mpm: Harmonize all license headerMartin Braun2017-12-228-91/+19
| | | | Now uses SPDX headers everywhere.
* mpm: Enable TX external LO set through args, simplify codeTrung N Tran2017-12-222-17/+2
| | | | | | | Simplify the process of setting external LO without calling through many API layers. Reviewed-By: Martin Braun <martin.braun@ettus.com>
* mpm: mykonos: Add API to change master clock rateTrung N Tran2017-12-223-1/+27
|
* mpm: enable RX external LO set through argsTrung N Tran2017-12-222-2/+16
| | | | | | | | | This change allow user to set RX LO of ad9371 to external or internal from args constructor of usrp device. new args is rx_lo_source value can be either internal or external: If there's no rx_lo_source specified or invalid value, default rx_lo is used; which is internal LO. Usage example: usrp_application --args "rx_lo_source=external"
* ad937x: remove magic constant in ad937x_config_tMark Meserve2017-12-222-4/+7
|
* ad937x: add comments to ad937x_gain_ctrl_configMark Meserve2017-12-222-17/+19
|
* ad937x: update ad937x_firMark Meserve2017-12-222-3/+4
| | | | | add comment label get_fir as const
* ad937x: cleanup and optimize ad937x_config_tMark Meserve2017-12-222-66/+54
|
* mg: add new framer/deframer valuesMark Meserve2017-12-221-3/+6
| | | | | this fixes the channel swap in RX preserves functionality in TX
* mpm: ad937x: Updated controlsMark Meserve2017-12-223-6/+31
|
* mg: General fixesMark Meserve2017-12-221-1/+1
| | | | | - Make DB probe-able - Add RPC client
* mg: bring up linksMark Meserve2017-12-222-55/+67
|
* mpm: Fixed a plethora of SPI-related issuesMartin Braun2017-12-222-3/+4
|
* mpm: Improved ad937x codeMark Meserve2017-12-223-0/+214
| | | | | | - Add gain control pin configuration - Fixed gcc compilation - Better docstrings
* ad9371: update jesd default configMark Meserve2017-12-221-4/+4
|
* ad9371: whitespace cleanupMark Meserve2017-12-224-134/+134
|
* mpm: Rearchitecture of AD9371 code to use ctrl/device paradigmMark Meserve2017-12-227-443/+518
|
* Initial commit for N3xx development.Martin Braun2017-12-226-0/+596
- Creates mpm/ subdirectory - First pass at hardware daemon/MPM - New code for LMK04828, AD9371 - spidev integration Contributions by: Martin Braun <martin.braun@ettus.com> Derek Kozel <derek.kozel@ettus.com> Mark Meserve <mark.meserve@ni.com> Andrej Rode <andrej.rode@ettus.com>