Skip to content

Commit b20b398

Browse files
authored
Merge pull request #926 from analogdevicesinc/main
chore(Other): Stage Feb 2024 Release
2 parents 6000c61 + 1efe834 commit b20b398

File tree

3,806 files changed

+7751
-14553
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,806 files changed

+7751
-14553
lines changed

.github/workflows/clang-format-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
# Exclude register header files. Those don't follow clang formatting or it becomes unreadable
4646
- name: clang-format-check
4747
run: |
48-
CHANGE_FILES=$(git diff --ignore-submodules --name-only remotes/origin/main '*.c' '*.h' ':!*_regs.h' ':!*weights.h' ':!*cnn.h' ':!*cnn.c' ':!*sampledata.h' ':!*sampleoutput.h' ':!*softmax.c' ':!Examples/*/Coremark/*' ':!Libraries/FCL' ':!Libraries/FreeRTOS' ':!Libraries/lwIP' ':!Libraries/littlefs' ':!Libraries/FreeRTOS-Plus' ':!Libraries/LC3' ':!Libraries/SDHC' ':!Libraries/MAXUSB' ':!Libraries/Cordio' ':!Libraries/LVGL' ':!Libraries/Coremark' ':!Libraries/MiscDrivers/BarcodeDecoder')
48+
CHANGE_FILES=$(git diff --ignore-submodules --name-only remotes/origin/main '*.c' '*.h' ':!*_regs.h' ':!*ffconf.h' ':!*weights.h' ':!*cnn.h' ':!*cnn.c' ':!*sampledata.h' ':!*sampleoutput.h' ':!*softmax.c' ':!Examples/*/Coremark/*' ':!Libraries/FCL' ':!Libraries/FreeRTOS' ':!Libraries/lwIP' ':!Libraries/littlefs' ':!Libraries/FreeRTOS-Plus' ':!Libraries/LC3' ':!Libraries/SDHC' ':!Libraries/MAXUSB' ':!Libraries/Cordio' ':!Libraries/LVGL' ':!Libraries/Coremark' ':!Libraries/MiscDrivers/BarcodeDecoder')
4949
if [[ "$CHANGE_FILES" != "" ]]; then
5050
bash -e .github/workflows/clang-format-run.sh $CHANGE_FILES
5151
fi

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Documentation/Libraries
1010
Documentation/res
1111
Examples/MAX78000/PowerTest
1212
Examples/MAX32570
13+
Examples/MAX32572
1314
__pycache__
1415
msdk-internal
1516
Tools/GNUTools

Examples/MAX32520/AES/.vscode/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
44

55
## Quick Links
66

7-
* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
7+
* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
88
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
99

1010
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
2323
* [Visual Studio Code](https://code.visualstudio.com/)
2424
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
2525
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
26-
* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
26+
* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
2727

2828
## Installation
2929

3030
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
3131

32-
See [Getting Started with Visual Studio Code](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the MSDK User Guide for detailed instructions.
32+
See [Getting Started with Visual Studio Code](https://analogdevicesinc.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the MSDK User Guide for detailed instructions.
3333

3434
## Usage
3535

36-
See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
36+
See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
3737

3838
## Issue Tracker
3939

Examples/MAX32520/AES/.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
4949
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
5050
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
51+
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
5152
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
5253
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
5354
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
6162
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
6263
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
6364
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
65+
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
6466
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
6567
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
6668
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",

Examples/MAX32520/AES/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# in "project.mk", on the command-line, or with system environment
2626
# variables.
2727

28-
# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
28+
# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
2929
# for more detailed instructions on how to use this system.
3030

3131
# The detailed instructions mentioned above are easier to read than

Examples/MAX32520/AES/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This application demonstrates both encryption and decryption using AES. A block
77

88
### Project Usage
99

10-
Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
10+
Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
1111

1212
### Project-Specific Build Notes
1313

Examples/MAX32520/AES/project.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# "Makefile" that is located next to this one.
44

55
# For instructions on how to use this system, see
6-
# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
6+
# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
77

88
#BOARD=MAX32520FTHR
99
# ^ For example, you can uncomment this line to make the

Examples/MAX32520/ARM-DSP/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
1414

1515
### Project Usage
1616

17-
Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
17+
Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
1818

1919
### Project-Specific Build Notes
2020

Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
44

55
## Quick Links
66

7-
* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
7+
* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
88
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
99

1010
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
2323
* [Visual Studio Code](https://code.visualstudio.com/)
2424
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
2525
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
26-
* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
26+
* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
2727

2828
## Installation
2929

3030
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
3131

32-
See [Getting Started with Visual Studio Code](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the MSDK User Guide for detailed instructions.
32+
See [Getting Started with Visual Studio Code](https://analogdevicesinc.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the MSDK User Guide for detailed instructions.
3333

3434
## Usage
3535

36-
See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
36+
See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
3737

3838
## Issue Tracker
3939

Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
4949
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
5050
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
51+
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
5152
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
5253
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
5354
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
6465
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
6566
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
6667
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
68+
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
6769
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
6870
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
6971
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",

Examples/MAX32520/ARM-DSP/arm_bayes_example/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# in "project.mk", on the command-line, or with system environment
2626
# variables.
2727

28-
# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
28+
# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
2929
# for more detailed instructions on how to use this system.
3030

3131
# The detailed instructions mentioned above are easier to read than

Examples/MAX32520/ARM-DSP/arm_bayes_example/project.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# "Makefile" that is located next to this one.
44

55
# For instructions on how to use this system, see
6-
# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
6+
# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
77

88
#BOARD=MAX32520FTHR
99
# ^ For example, you can uncomment this line to make the

Examples/MAX32520/ARM-DSP/arm_class_marks_example/.vscode/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
44

55
## Quick Links
66

7-
* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
7+
* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
88
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
99

1010
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
2323
* [Visual Studio Code](https://code.visualstudio.com/)
2424
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
2525
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
26-
* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
26+
* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
2727

2828
## Installation
2929

3030
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
3131

32-
See [Getting Started with Visual Studio Code](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the MSDK User Guide for detailed instructions.
32+
See [Getting Started with Visual Studio Code](https://analogdevicesinc.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the MSDK User Guide for detailed instructions.
3333

3434
## Usage
3535

36-
See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
36+
See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
3737

3838
## Issue Tracker
3939

Examples/MAX32520/ARM-DSP/arm_class_marks_example/.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
4949
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
5050
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
51+
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
5152
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
5253
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
5354
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
6465
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
6566
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
6667
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
68+
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
6769
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
6870
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
6971
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",

Examples/MAX32520/ARM-DSP/arm_class_marks_example/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# in "project.mk", on the command-line, or with system environment
2626
# variables.
2727

28-
# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
28+
# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
2929
# for more detailed instructions on how to use this system.
3030

3131
# The detailed instructions mentioned above are easier to read than

Examples/MAX32520/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ uint32_t student_num;
139139
* Main f32 test function. It returns maximum marks secured and student number
140140
* ------------------------------------------------------------------------------- */
141141

142-
int32_t main()
142+
int main()
143143
{
144144
#ifndef USE_STATIC_INIT
145145

Examples/MAX32520/ARM-DSP/arm_class_marks_example/project.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# "Makefile" that is located next to this one.
44

55
# For instructions on how to use this system, see
6-
# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
6+
# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
77

88
#BOARD=MAX32520FTHR
99
# ^ For example, you can uncomment this line to make the

Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
44

55
## Quick Links
66

7-
* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
7+
* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
88
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
99

1010
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
2323
* [Visual Studio Code](https://code.visualstudio.com/)
2424
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
2525
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
26-
* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
26+
* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
2727

2828
## Installation
2929

3030
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
3131

32-
See [Getting Started with Visual Studio Code](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the MSDK User Guide for detailed instructions.
32+
See [Getting Started with Visual Studio Code](https://analogdevicesinc.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the MSDK User Guide for detailed instructions.
3333

3434
## Usage
3535

36-
See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
36+
See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
3737

3838
## Issue Tracker
3939

Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
4949
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
5050
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
51+
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
5152
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
5253
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
5354
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
6465
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
6566
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
6667
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
68+
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
6769
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
6870
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
6971
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",

Examples/MAX32520/ARM-DSP/arm_convolution_example/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# in "project.mk", on the command-line, or with system environment
2626
# variables.
2727

28-
# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
28+
# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
2929
# for more detailed instructions on how to use this system.
3030

3131
# The detailed instructions mentioned above are easier to read than

Examples/MAX32520/ARM-DSP/arm_convolution_example/project.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# "Makefile" that is located next to this one.
44

55
# For instructions on how to use this system, see
6-
# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
6+
# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
77

88
#BOARD=MAX32520FTHR
99
# ^ For example, you can uncomment this line to make the

Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
44

55
## Quick Links
66

7-
* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
7+
* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
88
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
99

1010
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
2323
* [Visual Studio Code](https://code.visualstudio.com/)
2424
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
2525
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
26-
* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
26+
* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
2727

2828
## Installation
2929

3030
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
3131

32-
See [Getting Started with Visual Studio Code](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the MSDK User Guide for detailed instructions.
32+
See [Getting Started with Visual Studio Code](https://analogdevicesinc.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the MSDK User Guide for detailed instructions.
3333

3434
## Usage
3535

36-
See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
36+
See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
3737

3838
## Issue Tracker
3939

Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
4949
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
5050
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
51+
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
5152
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
5253
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
5354
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
6465
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
6566
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
6667
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
68+
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
6769
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
6870
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
6971
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",

Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# in "project.mk", on the command-line, or with system environment
2626
# variables.
2727

28-
# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
28+
# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
2929
# for more detailed instructions on how to use this system.
3030

3131
# The detailed instructions mentioned above are easier to read than

Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/project.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# "Makefile" that is located next to this one.
44

55
# For instructions on how to use this system, see
6-
# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
6+
# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
77

88
#BOARD=MAX32520FTHR
99
# ^ For example, you can uncomment this line to make the

0 commit comments

Comments
 (0)