-
Notifications
You must be signed in to change notification settings - Fork 1.6k
projects/adrv9001_dual: Add REAMEs and VADJ value #1847
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# ADRV9001-DUAL HDL Project | ||
|
||
- Evaluation board product page: [ADRV9002](https://www.analog.com/eval-adrv9002) | ||
- System documentation: https://wiki.analog.com/resources/eval/user-guides/adrv9002/quickstart | ||
- HDL project documentation: https://analogdevicesinc.github.io/hdl/projects/adrv9001_dual/index.html | ||
- Evaluation board VADJ: 1.8V | ||
|
||
## Supported parts | ||
|
||
| Part name | Description | | ||
|---------------------------------------------|----------------------------------------------| | ||
| [ADRV9002](https://www.analog.com/ADRV9002) | Dual Narrow-Band and Wideband RF Transceiver | | ||
|
||
## Building the project | ||
|
||
Please enter the folder for the FPGA carrier you want to use and read the README.md. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!-- no_dts, no_no_os --> | ||
|
||
# ADRV9001-DUAL/ZCU102 HDL Project | ||
|
||
- VADJ with which it was tested in hardware: 1.8V | ||
|
||
## Building the project | ||
|
||
The parameters configurable through the `make` command, can be found below, as well as in the **system_project.tcl** file; it contains the default configuration. | ||
|
||
``` | ||
cd hdl/projects/adrv9001_dual/zcu102 | ||
make | ||
``` | ||
|
||
The overwritable parameters from the environment: | ||
|
||
- CMOS_LVDS_N - selects the interface type | ||
- 0 = LVDS (default) | ||
- 1 = CMOS | ||
- USE_RX_CLK_FOR_TX1 - selects the clock to drive the TX1 SSI interface | ||
- 0 = TX1 dedicated clock (default) | ||
- 1 = RX1 SSI clock | ||
- 2 = RX2 SSI clock | ||
- USE_RX_CLK_FOR_TX2 - selects the clock to drive the TX2 SSI interface | ||
- 0 = TX2 dedicated clock (default) | ||
- 1 = RX1 SSI clock | ||
- 2 = RX2 SSI clock | ||
|
||
### Example configurations | ||
|
||
#### Default configuration | ||
|
||
This specific command is equivalent to running `make` only: | ||
|
||
``` | ||
cd hdl/projects/adrv9001_dual/zcu102 | ||
make CMOS_LVDS_N=0 \ | ||
USE_RX_CLK_FOR_TX1=0 \ | ||
USE_RX_CLK_FOR_TX2=0 | ||
``` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.