aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/lib/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* cmake: Update coding style to use lowercase commandsMartin Braun2018-11-141-8/+8
| | | | | | | | | | | | | | | | | Also updates our coding style file. Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code (with GNU compliant sed): cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done > convert.sed \ && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' \ '*CMakeLists.txt' | xargs -0 gsed -i -f convert.sed && rm convert.sed (Make sure the backslashes don't get mangled!)
* mpm: Add i2c APIs for simple transfersAlex Williams2018-10-191-0/+1
|
* mpm: initial commit of E320 codeBrent Stapleton2018-07-181-1/+3
| | | | Co-authored-by: Sugandha Gupta <sugandha.gupta@ettus.com>
* mpm: Use configurable components for build systemAlex Williams2018-04-181-2/+2
| | | | | For a minimal build, default to off for components unless the MPM_DEVICE or the user requests it specifically.
* mpm: break up device compilationBrent Stapleton2018-03-051-1/+4
| | | | Breaking up dboard compilation based on the target MPM_DEVICE.
* mpm: Harmonize all license headerMartin Braun2017-12-221-13/+2
| | | | Now uses SPDX headers everywhere.
* mpm: Major refactoringMartin Braun2017-12-221-8/+11
| | | | | | - Created clean interfaces for SPI and registers - Severed most links to UHD - Added a lockable class which allows exposing mutexes into Python
* mpm: mpm reorganizationAndrej Rode2017-12-221-2/+0
|
* mpm: move public includes into include/Martin Braun2017-12-221-1/+0
|
* mpm: python refactoringAndrej Rode2017-12-221-1/+5
|
* Initial commit for N3xx development.Martin Braun2017-12-221-0/+28
- 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>