mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
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!) |
||
|---|---|---|
| .. | ||
| e300 | ||
| fx2 | ||
| fx3 | ||
| octoclock | ||
| usrp2 | ||
| usrp3 | ||
| README.md | ||
Firmware for USRP Devices
fx2/
Description: This is the firmware for the FX2 USB PHY.
Devices: USRP1 and B100 devices.
Tools: sdcc, cmake
Build Instructions:
- mkdir
<build directory> - cd
<build directory> - cmake
<source directory> - make
fx3/
Description: This is the firmware for the FX3 USB PHY.
Devices: USRP B200 and USRP B210
Tools: Cypress FX3 SDK
Build Instructions:
Please see the fx3/README.md file for additional instructions.
octoclock/
Description: Firmware for the Octoclock device.
Devices: Octoclock.
Tools: avrtools, cmake
Build Instructions:
- mkdir
<build directory> - cd
<build directory> - cmake
<source directory> - make
zpu/
Description: Firmware for the soft CPUs in the UHD FPGA images.
Devices: USRP2 and N-Series devices.
Tools: zpu-gcc, cmake
This code requires the gcc-zpu tool-chain which can be found here:
http://opensource.zylin.com/zpudownload.html
zpu-elf-gcc should be in your $PATH
Build Instructions:
- mkdir
<build directory> - cd
<build directory> - cmake
<source directory> - make