-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated package build configuration for latest release
- Loading branch information
Showing
3 changed files
with
35 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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,26 @@ | ||
@echo off | ||
|
||
:check_Permissions | ||
echo Administrative permissions required. Detecting permissions... | ||
|
||
net session >nul 2>&1 | ||
if %errorLevel% == 0 ( | ||
echo Success: Administrative permissions confirmed. | ||
goto install | ||
) else ( | ||
echo Failure: Current permissions inadequate. Re-run this script as an administrator to continue. | ||
goto end | ||
) | ||
|
||
|
||
|
||
:install | ||
cd C:\Program Files\National Instruments\NI Package Manager\ | ||
echo Adding feed... | ||
nipkg feed-add -n=rfmx-signal-creator https://raw.githubusercontent.com/NISystemsEngineering/package-repo/master/rfmx-signal-creator/Packages | ||
echo Installing packages... | ||
nipkg update rfmx-signal-creator | ||
nipkg install --accept-eulas -y rfmx-signal-creator rfmx-signal-creator-plugin-nr rfmx-signal-creator-plugin-wlan | ||
|
||
:end | ||
pause >nul |
This file contains 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 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# 5G NR Plugin | ||
- **Current Version**: 1.0.0 | ||
- **Current Version**: 1.1.0 | ||
- **Supported NI-RFmx Versions**: 19.1, 20.0 | ||
- **Supported Features**: Implements all NR properties except for CORESETs; these are ignored for now | ||
- **Supported Features**: Implements all NR properties. |