diff --git a/.github/workflows/clang-format-check.yml b/.github/workflows/clang-format-check.yml
index a00b878276..80ce8d614d 100644
--- a/.github/workflows/clang-format-check.yml
+++ b/.github/workflows/clang-format-check.yml
@@ -45,7 +45,7 @@ jobs:
# Exclude register header files. Those don't follow clang formatting or it becomes unreadable
- name: clang-format-check
run: |
- 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')
+ 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')
if [[ "$CHANGE_FILES" != "" ]]; then
bash -e .github/workflows/clang-format-run.sh $CHANGE_FILES
fi
diff --git a/.gitignore b/.gitignore
index 9df77d05cd..85ab7ee468 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,6 +10,7 @@ Documentation/Libraries
Documentation/res
Examples/MAX78000/PowerTest
Examples/MAX32570
+Examples/MAX32572
__pycache__
msdk-internal
Tools/GNUTools
diff --git a/Examples/MAX32520/AES/.vscode/README.md b/Examples/MAX32520/AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/AES/.vscode/README.md
+++ b/Examples/MAX32520/AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/AES/.vscode/settings.json b/Examples/MAX32520/AES/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/AES/.vscode/settings.json
+++ b/Examples/MAX32520/AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/AES/Makefile b/Examples/MAX32520/AES/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/AES/Makefile
+++ b/Examples/MAX32520/AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/AES/README.md b/Examples/MAX32520/AES/README.md
index f913864851..60884aee02 100644
--- a/Examples/MAX32520/AES/README.md
+++ b/Examples/MAX32520/AES/README.md
@@ -7,7 +7,7 @@ This application demonstrates both encryption and decryption using AES. A block
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/AES/project.mk b/Examples/MAX32520/AES/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/AES/project.mk
+++ b/Examples/MAX32520/AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/README.md b/Examples/MAX32520/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32520/ARM-DSP/README.md
+++ b/Examples/MAX32520/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_bayes_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_bayes_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_class_marks_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32520/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32520/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32520/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32520/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_class_marks_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_convolution_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_convolution_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_fir_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_fir_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_fir_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_matrix_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_matrix_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_svm_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_svm_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_svm_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32520/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32520/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32520/ARM-DSP/arm_variance_example/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32520/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32520/ARM-DSP/arm_variance_example/Makefile
index 83a9b33222..2259b4a1f6 100644
--- a/Examples/MAX32520/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32520/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX32520/ARM-DSP/arm_variance_example/project.mk
index f9226f6a7e..de9a85c515 100644
--- a/Examples/MAX32520/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX32520/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/CRC/.vscode/README.md b/Examples/MAX32520/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/CRC/.vscode/README.md
+++ b/Examples/MAX32520/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/CRC/.vscode/settings.json b/Examples/MAX32520/CRC/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/CRC/.vscode/settings.json
+++ b/Examples/MAX32520/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/CRC/Makefile b/Examples/MAX32520/CRC/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/CRC/Makefile
+++ b/Examples/MAX32520/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/CRC/README.md b/Examples/MAX32520/CRC/README.md
index f1862d5142..8f6b2d96c2 100644
--- a/Examples/MAX32520/CRC/README.md
+++ b/Examples/MAX32520/CRC/README.md
@@ -7,7 +7,7 @@ This example demonstrates the use of the HW CRC calculator. The example first g
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/CRC/project.mk b/Examples/MAX32520/CRC/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/CRC/project.mk
+++ b/Examples/MAX32520/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/Coremark/.vscode/README.md b/Examples/MAX32520/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/Coremark/.vscode/README.md
+++ b/Examples/MAX32520/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/Coremark/.vscode/settings.json b/Examples/MAX32520/Coremark/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/Coremark/.vscode/settings.json
+++ b/Examples/MAX32520/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/Coremark/Makefile b/Examples/MAX32520/Coremark/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/Coremark/Makefile
+++ b/Examples/MAX32520/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/Coremark/README.md b/Examples/MAX32520/Coremark/README.md
index 21d7221717..f67c111106 100644
--- a/Examples/MAX32520/Coremark/README.md
+++ b/Examples/MAX32520/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/Coremark/project.mk b/Examples/MAX32520/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32520/Coremark/project.mk
+++ b/Examples/MAX32520/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32520/DMA/.vscode/README.md b/Examples/MAX32520/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/DMA/.vscode/README.md
+++ b/Examples/MAX32520/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/DMA/.vscode/settings.json b/Examples/MAX32520/DMA/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/DMA/.vscode/settings.json
+++ b/Examples/MAX32520/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/DMA/Makefile b/Examples/MAX32520/DMA/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/DMA/Makefile
+++ b/Examples/MAX32520/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/DMA/README.md b/Examples/MAX32520/DMA/README.md
index 2048ffdbfd..c34ff90a1f 100644
--- a/Examples/MAX32520/DMA/README.md
+++ b/Examples/MAX32520/DMA/README.md
@@ -9,7 +9,7 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/DMA/project.mk b/Examples/MAX32520/DMA/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/DMA/project.mk
+++ b/Examples/MAX32520/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/ECDSA/.vscode/README.md b/Examples/MAX32520/ECDSA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ECDSA/.vscode/README.md
+++ b/Examples/MAX32520/ECDSA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ECDSA/.vscode/settings.json b/Examples/MAX32520/ECDSA/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/ECDSA/.vscode/settings.json
+++ b/Examples/MAX32520/ECDSA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ECDSA/Makefile b/Examples/MAX32520/ECDSA/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/ECDSA/Makefile
+++ b/Examples/MAX32520/ECDSA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ECDSA/README.md b/Examples/MAX32520/ECDSA/README.md
index deb125496a..6b51e29f46 100644
--- a/Examples/MAX32520/ECDSA/README.md
+++ b/Examples/MAX32520/ECDSA/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/ECDSA/project.mk b/Examples/MAX32520/ECDSA/project.mk
index bf87ad5648..7d5879106d 100644
--- a/Examples/MAX32520/ECDSA/project.mk
+++ b/Examples/MAX32520/ECDSA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32520/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32520/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32520/EEPROM_Emulator/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32520/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/EEPROM_Emulator/Makefile b/Examples/MAX32520/EEPROM_Emulator/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32520/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/EEPROM_Emulator/README.md b/Examples/MAX32520/EEPROM_Emulator/README.md
index 98c9cac636..210dec9ac8 100644
--- a/Examples/MAX32520/EEPROM_Emulator/README.md
+++ b/Examples/MAX32520/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32520 to emulate a 64KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -48,7 +48,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/EEPROM_Emulator/project.mk b/Examples/MAX32520/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32520/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32520/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32520/Flash/.vscode/README.md b/Examples/MAX32520/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/Flash/.vscode/README.md
+++ b/Examples/MAX32520/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/Flash/.vscode/settings.json b/Examples/MAX32520/Flash/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/Flash/.vscode/settings.json
+++ b/Examples/MAX32520/Flash/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/Flash/Makefile b/Examples/MAX32520/Flash/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/Flash/Makefile
+++ b/Examples/MAX32520/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/Flash/README.md b/Examples/MAX32520/Flash/README.md
index 93e1e48c59..d131dbe137 100644
--- a/Examples/MAX32520/Flash/README.md
+++ b/Examples/MAX32520/Flash/README.md
@@ -21,7 +21,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -42,9 +42,9 @@ If using the MAX32520FTHR:
## Building and Running
-**See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
+**See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
-This example supports all available MAX32520 evaluation platforms but comes _pre-configured_ for the MAX32520-KIT by default. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
+This example supports all available MAX32520 evaluation platforms but comes _pre-configured_ for the MAX32520-KIT by default. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
## Expected Output
diff --git a/Examples/MAX32520/Flash/project.mk b/Examples/MAX32520/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32520/Flash/project.mk
+++ b/Examples/MAX32520/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32520/Flash_CLI/.vscode/README.md b/Examples/MAX32520/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32520/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/Flash_CLI/.vscode/settings.json b/Examples/MAX32520/Flash_CLI/.vscode/settings.json
index 772ba1c31f..530b798f9a 100755
--- a/Examples/MAX32520/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32520/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/Flash_CLI/Makefile b/Examples/MAX32520/Flash_CLI/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/Flash_CLI/Makefile
+++ b/Examples/MAX32520/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/Flash_CLI/README.md b/Examples/MAX32520/Flash_CLI/README.md
index d742c51245..5041d00f55 100644
--- a/Examples/MAX32520/Flash_CLI/README.md
+++ b/Examples/MAX32520/Flash_CLI/README.md
@@ -9,7 +9,7 @@ This example demonstates the CLI commands feature of FreeRTOS, various features
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/Flash_CLI/project.mk b/Examples/MAX32520/Flash_CLI/project.mk
index b22926cf20..dda92612f6 100644
--- a/Examples/MAX32520/Flash_CLI/project.mk
+++ b/Examples/MAX32520/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32520/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX32520/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX32520/FreeRTOSDemo/.vscode/settings.json
index 772ba1c31f..530b798f9a 100755
--- a/Examples/MAX32520/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX32520/FreeRTOSDemo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/FreeRTOSDemo/Makefile b/Examples/MAX32520/FreeRTOSDemo/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/FreeRTOSDemo/Makefile
+++ b/Examples/MAX32520/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/FreeRTOSDemo/README.md b/Examples/MAX32520/FreeRTOSDemo/README.md
index 974c658103..3ea34291e7 100644
--- a/Examples/MAX32520/FreeRTOSDemo/README.md
+++ b/Examples/MAX32520/FreeRTOSDemo/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/FreeRTOSDemo/project.mk b/Examples/MAX32520/FreeRTOSDemo/project.mk
index b22926cf20..dda92612f6 100644
--- a/Examples/MAX32520/FreeRTOSDemo/project.mk
+++ b/Examples/MAX32520/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/GPIO/.vscode/README.md b/Examples/MAX32520/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/GPIO/.vscode/README.md
+++ b/Examples/MAX32520/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/GPIO/.vscode/settings.json b/Examples/MAX32520/GPIO/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/GPIO/.vscode/settings.json
+++ b/Examples/MAX32520/GPIO/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/GPIO/Makefile b/Examples/MAX32520/GPIO/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/GPIO/Makefile
+++ b/Examples/MAX32520/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/GPIO/README.md b/Examples/MAX32520/GPIO/README.md
index bfaf32bba2..dd49cbdda0 100644
--- a/Examples/MAX32520/GPIO/README.md
+++ b/Examples/MAX32520/GPIO/README.md
@@ -9,7 +9,7 @@ P1.1 is continuously scanned and whatever value is read on that pin is then outp
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/GPIO/project.mk b/Examples/MAX32520/GPIO/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/GPIO/project.mk
+++ b/Examples/MAX32520/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/Hello_World/.vscode/README.md b/Examples/MAX32520/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/Hello_World/.vscode/README.md
+++ b/Examples/MAX32520/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/Hello_World/.vscode/settings.json b/Examples/MAX32520/Hello_World/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32520/Hello_World/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/Hello_World/Makefile b/Examples/MAX32520/Hello_World/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/Hello_World/Makefile
+++ b/Examples/MAX32520/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/Hello_World/README.md b/Examples/MAX32520/Hello_World/README.md
index 030ab99817..760154b004 100644
--- a/Examples/MAX32520/Hello_World/README.md
+++ b/Examples/MAX32520/Hello_World/README.md
@@ -9,7 +9,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/Hello_World/project.mk b/Examples/MAX32520/Hello_World/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/Hello_World/project.mk
+++ b/Examples/MAX32520/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32520/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32520/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32520/Hello_World_Cpp/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32520/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/Hello_World_Cpp/Makefile b/Examples/MAX32520/Hello_World_Cpp/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32520/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/Hello_World_Cpp/README.md b/Examples/MAX32520/Hello_World_Cpp/README.md
index 9ff8e48ee1..aa1b3e94e3 100644
--- a/Examples/MAX32520/Hello_World_Cpp/README.md
+++ b/Examples/MAX32520/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/Hello_World_Cpp/project.mk b/Examples/MAX32520/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32520/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32520/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32520/I2C_MNGR/.vscode/README.md b/Examples/MAX32520/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32520/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/I2C_MNGR/.vscode/settings.json b/Examples/MAX32520/I2C_MNGR/.vscode/settings.json
index 7f73d8e9a8..d320fe5df5 100755
--- a/Examples/MAX32520/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32520/I2C_MNGR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/I2C_MNGR/Makefile b/Examples/MAX32520/I2C_MNGR/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/I2C_MNGR/Makefile
+++ b/Examples/MAX32520/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/I2C_MNGR/README.md b/Examples/MAX32520/I2C_MNGR/README.md
index 44126a16a3..4d3c0875f5 100644
--- a/Examples/MAX32520/I2C_MNGR/README.md
+++ b/Examples/MAX32520/I2C_MNGR/README.md
@@ -11,7 +11,7 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/I2C_MNGR/project.mk b/Examples/MAX32520/I2C_MNGR/project.mk
index 315928bc48..90e76c6363 100644
--- a/Examples/MAX32520/I2C_MNGR/project.mk
+++ b/Examples/MAX32520/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32520/I2C_SCAN/.vscode/README.md b/Examples/MAX32520/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32520/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/I2C_SCAN/.vscode/settings.json b/Examples/MAX32520/I2C_SCAN/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32520/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/I2C_SCAN/Makefile b/Examples/MAX32520/I2C_SCAN/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/I2C_SCAN/Makefile
+++ b/Examples/MAX32520/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/I2C_SCAN/README.md b/Examples/MAX32520/I2C_SCAN/README.md
index 202c3499b9..a63d0b14ab 100644
--- a/Examples/MAX32520/I2C_SCAN/README.md
+++ b/Examples/MAX32520/I2C_SCAN/README.md
@@ -6,7 +6,7 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/I2C_SCAN/project.mk b/Examples/MAX32520/I2C_SCAN/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/I2C_SCAN/project.mk
+++ b/Examples/MAX32520/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/I2C_Sensor/.vscode/README.md b/Examples/MAX32520/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32520/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/I2C_Sensor/.vscode/settings.json b/Examples/MAX32520/I2C_Sensor/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32520/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/I2C_Sensor/Makefile b/Examples/MAX32520/I2C_Sensor/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/I2C_Sensor/Makefile
+++ b/Examples/MAX32520/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/I2C_Sensor/README.md b/Examples/MAX32520/I2C_Sensor/README.md
index 87fbda3349..9ea7eee91d 100644
--- a/Examples/MAX32520/I2C_Sensor/README.md
+++ b/Examples/MAX32520/I2C_Sensor/README.md
@@ -9,7 +9,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/I2C_Sensor/project.mk b/Examples/MAX32520/I2C_Sensor/project.mk
index a53675ddcf..6a77af6337 100644
--- a/Examples/MAX32520/I2C_Sensor/project.mk
+++ b/Examples/MAX32520/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32520/ICC/.vscode/README.md b/Examples/MAX32520/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/ICC/.vscode/README.md
+++ b/Examples/MAX32520/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/ICC/.vscode/settings.json b/Examples/MAX32520/ICC/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/ICC/.vscode/settings.json
+++ b/Examples/MAX32520/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/ICC/Makefile b/Examples/MAX32520/ICC/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/ICC/Makefile
+++ b/Examples/MAX32520/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/ICC/README.md b/Examples/MAX32520/ICC/README.md
index 121e1a203b..1ab53cdf36 100644
--- a/Examples/MAX32520/ICC/README.md
+++ b/Examples/MAX32520/ICC/README.md
@@ -12,7 +12,7 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/ICC/project.mk b/Examples/MAX32520/ICC/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/ICC/project.mk
+++ b/Examples/MAX32520/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/LP/.vscode/README.md b/Examples/MAX32520/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/LP/.vscode/README.md
+++ b/Examples/MAX32520/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/LP/.vscode/settings.json b/Examples/MAX32520/LP/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/LP/.vscode/settings.json
+++ b/Examples/MAX32520/LP/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/LP/Makefile b/Examples/MAX32520/LP/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/LP/Makefile
+++ b/Examples/MAX32520/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/LP/README.md b/Examples/MAX32520/LP/README.md
index e08a1c6316..9c25bdbfc1 100644
--- a/Examples/MAX32520/LP/README.md
+++ b/Examples/MAX32520/LP/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/LP/project.mk b/Examples/MAX32520/LP/project.mk
index c2e91c097f..816b582e5b 100644
--- a/Examples/MAX32520/LP/project.mk
+++ b/Examples/MAX32520/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/Library_Generate/.vscode/README.md b/Examples/MAX32520/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32520/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32520/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32520/Library_Generate/Makefile b/Examples/MAX32520/Library_Generate/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/Library_Generate/Makefile
+++ b/Examples/MAX32520/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/Library_Generate/README.md b/Examples/MAX32520/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32520/Library_Generate/README.md
+++ b/Examples/MAX32520/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/Library_Generate/project.mk b/Examples/MAX32520/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32520/Library_Generate/project.mk
+++ b/Examples/MAX32520/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32520/Library_Use/.vscode/README.md b/Examples/MAX32520/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/Library_Use/.vscode/README.md
+++ b/Examples/MAX32520/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/Library_Use/.vscode/settings.json b/Examples/MAX32520/Library_Use/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32520/Library_Use/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/Library_Use/Makefile b/Examples/MAX32520/Library_Use/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/Library_Use/Makefile
+++ b/Examples/MAX32520/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/Library_Use/README.md b/Examples/MAX32520/Library_Use/README.md
index 35f1b18783..3aef3250ce 100644
--- a/Examples/MAX32520/Library_Use/README.md
+++ b/Examples/MAX32520/Library_Use/README.md
@@ -9,11 +9,11 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-This example supports all available MAX32520 evaluation platforms but comes _pre-configured_ for the MAX32520-KIT by default. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
+This example supports all available MAX32520 evaluation platforms but comes _pre-configured_ for the MAX32520-KIT by default. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
## Hardware Connections
diff --git a/Examples/MAX32520/Library_Use/project.mk b/Examples/MAX32520/Library_Use/project.mk
index 37448b4d8e..35cf5faf80 100644
--- a/Examples/MAX32520/Library_Use/project.mk
+++ b/Examples/MAX32520/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32520/LockDebug/.vscode/README.md b/Examples/MAX32520/LockDebug/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/LockDebug/.vscode/README.md
+++ b/Examples/MAX32520/LockDebug/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/LockDebug/.vscode/settings.json b/Examples/MAX32520/LockDebug/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/LockDebug/.vscode/settings.json
+++ b/Examples/MAX32520/LockDebug/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/LockDebug/Makefile b/Examples/MAX32520/LockDebug/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/LockDebug/Makefile
+++ b/Examples/MAX32520/LockDebug/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/LockDebug/README.md b/Examples/MAX32520/LockDebug/README.md
index deb125496a..6b51e29f46 100644
--- a/Examples/MAX32520/LockDebug/README.md
+++ b/Examples/MAX32520/LockDebug/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/LockDebug/project.mk b/Examples/MAX32520/LockDebug/project.mk
index 695488eb80..764ed9c737 100644
--- a/Examples/MAX32520/LockDebug/project.mk
+++ b/Examples/MAX32520/LockDebug/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32520/OTP_Dump/.vscode/README.md b/Examples/MAX32520/OTP_Dump/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/OTP_Dump/.vscode/README.md
+++ b/Examples/MAX32520/OTP_Dump/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/OTP_Dump/.vscode/settings.json b/Examples/MAX32520/OTP_Dump/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/OTP_Dump/.vscode/settings.json
+++ b/Examples/MAX32520/OTP_Dump/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/OTP_Dump/Makefile b/Examples/MAX32520/OTP_Dump/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/OTP_Dump/Makefile
+++ b/Examples/MAX32520/OTP_Dump/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32520/SCPA_OTP_Dump/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/SCPA_OTP_Dump/.vscode/README.md
+++ b/Examples/MAX32520/SCPA_OTP_Dump/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/SCPA_OTP_Dump/.vscode/settings.json b/Examples/MAX32520/SCPA_OTP_Dump/.vscode/settings.json
index 80930e4085..b5ea881e4d 100755
--- a/Examples/MAX32520/SCPA_OTP_Dump/.vscode/settings.json
+++ b/Examples/MAX32520/SCPA_OTP_Dump/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/SCPA_OTP_Dump/Makefile b/Examples/MAX32520/SCPA_OTP_Dump/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/SCPA_OTP_Dump/Makefile
+++ b/Examples/MAX32520/SCPA_OTP_Dump/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/SCPA_OTP_Dump/README.md b/Examples/MAX32520/SCPA_OTP_Dump/README.md
index 85ad7cdf64..37c5df5637 100644
--- a/Examples/MAX32520/SCPA_OTP_Dump/README.md
+++ b/Examples/MAX32520/SCPA_OTP_Dump/README.md
@@ -21,7 +21,7 @@ PROJ_CFLAGS+=-DMAX32520_A2
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/SCPA_OTP_Dump/project.mk b/Examples/MAX32520/SCPA_OTP_Dump/project.mk
index 08a1d79128..e8ebc6a530 100644
--- a/Examples/MAX32520/SCPA_OTP_Dump/project.mk
+++ b/Examples/MAX32520/SCPA_OTP_Dump/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/SFE/.vscode/README.md b/Examples/MAX32520/SFE/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/SFE/.vscode/README.md
+++ b/Examples/MAX32520/SFE/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/SFE/.vscode/settings.json b/Examples/MAX32520/SFE/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/SFE/.vscode/settings.json
+++ b/Examples/MAX32520/SFE/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/SFE/Makefile b/Examples/MAX32520/SFE/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/SFE/Makefile
+++ b/Examples/MAX32520/SFE/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/SFE/README.md b/Examples/MAX32520/SFE/README.md
index deb125496a..6b51e29f46 100644
--- a/Examples/MAX32520/SFE/README.md
+++ b/Examples/MAX32520/SFE/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/SFE/project.mk b/Examples/MAX32520/SFE/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/SFE/project.mk
+++ b/Examples/MAX32520/SFE/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/SFE_Host/.vscode/README.md b/Examples/MAX32520/SFE_Host/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/SFE_Host/.vscode/README.md
+++ b/Examples/MAX32520/SFE_Host/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/SFE_Host/.vscode/settings.json b/Examples/MAX32520/SFE_Host/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/SFE_Host/.vscode/settings.json
+++ b/Examples/MAX32520/SFE_Host/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/SFE_Host/Makefile b/Examples/MAX32520/SFE_Host/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/SFE_Host/Makefile
+++ b/Examples/MAX32520/SFE_Host/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/SFE_Host/README.md b/Examples/MAX32520/SFE_Host/README.md
index deb125496a..6b51e29f46 100644
--- a/Examples/MAX32520/SFE_Host/README.md
+++ b/Examples/MAX32520/SFE_Host/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/SFE_Host/project.mk b/Examples/MAX32520/SFE_Host/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/SFE_Host/project.mk
+++ b/Examples/MAX32520/SFE_Host/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/SMON/.vscode/README.md b/Examples/MAX32520/SMON/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/SMON/.vscode/README.md
+++ b/Examples/MAX32520/SMON/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/SMON/.vscode/settings.json b/Examples/MAX32520/SMON/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/SMON/.vscode/settings.json
+++ b/Examples/MAX32520/SMON/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/SMON/Makefile b/Examples/MAX32520/SMON/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/SMON/Makefile
+++ b/Examples/MAX32520/SMON/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/SMON/README.md b/Examples/MAX32520/SMON/README.md
index deb125496a..6b51e29f46 100644
--- a/Examples/MAX32520/SMON/README.md
+++ b/Examples/MAX32520/SMON/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/SMON/project.mk b/Examples/MAX32520/SMON/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/SMON/project.mk
+++ b/Examples/MAX32520/SMON/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/SPI/.vscode/README.md b/Examples/MAX32520/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/SPI/.vscode/README.md
+++ b/Examples/MAX32520/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/SPI/.vscode/settings.json b/Examples/MAX32520/SPI/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/SPI/.vscode/settings.json
+++ b/Examples/MAX32520/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/SPI/Makefile b/Examples/MAX32520/SPI/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/SPI/Makefile
+++ b/Examples/MAX32520/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/SPI/README.md b/Examples/MAX32520/SPI/README.md
index 31810f9d14..bab6fecb60 100644
--- a/Examples/MAX32520/SPI/README.md
+++ b/Examples/MAX32520/SPI/README.md
@@ -11,7 +11,7 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/SPI/project.mk b/Examples/MAX32520/SPI/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/SPI/project.mk
+++ b/Examples/MAX32520/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32520/SPI_MasterSlave/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/SPI_MasterSlave/.vscode/README.md
+++ b/Examples/MAX32520/SPI_MasterSlave/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/SPI_MasterSlave/.vscode/settings.json b/Examples/MAX32520/SPI_MasterSlave/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/SPI_MasterSlave/.vscode/settings.json
+++ b/Examples/MAX32520/SPI_MasterSlave/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/SPI_MasterSlave/Makefile b/Examples/MAX32520/SPI_MasterSlave/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/SPI_MasterSlave/Makefile
+++ b/Examples/MAX32520/SPI_MasterSlave/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/SPI_MasterSlave/README.md b/Examples/MAX32520/SPI_MasterSlave/README.md
index 34d2883d3d..7edaaa5193 100644
--- a/Examples/MAX32520/SPI_MasterSlave/README.md
+++ b/Examples/MAX32520/SPI_MasterSlave/README.md
@@ -11,7 +11,7 @@ Once the master ends the transaction, the data received by the master and the sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/SPI_MasterSlave/project.mk b/Examples/MAX32520/SPI_MasterSlave/project.mk
index 5dece4dfe6..a298e084ed 100644
--- a/Examples/MAX32520/SPI_MasterSlave/project.mk
+++ b/Examples/MAX32520/SPI_MasterSlave/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32520/TMR/.vscode/README.md b/Examples/MAX32520/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/TMR/.vscode/README.md
+++ b/Examples/MAX32520/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/TMR/.vscode/settings.json b/Examples/MAX32520/TMR/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/TMR/.vscode/settings.json
+++ b/Examples/MAX32520/TMR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/TMR/Makefile b/Examples/MAX32520/TMR/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/TMR/Makefile
+++ b/Examples/MAX32520/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/TMR/README.md b/Examples/MAX32520/TMR/README.md
index 8c372388d0..2d35a53714 100644
--- a/Examples/MAX32520/TMR/README.md
+++ b/Examples/MAX32520/TMR/README.md
@@ -11,7 +11,7 @@ Two timers are used to demonstrate two different modes of the general purpose ti
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/TMR/project.mk b/Examples/MAX32520/TMR/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/TMR/project.mk
+++ b/Examples/MAX32520/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/TRNG/.vscode/README.md b/Examples/MAX32520/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/TRNG/.vscode/README.md
+++ b/Examples/MAX32520/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/TRNG/.vscode/settings.json b/Examples/MAX32520/TRNG/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/TRNG/.vscode/settings.json
+++ b/Examples/MAX32520/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/TRNG/Makefile b/Examples/MAX32520/TRNG/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/TRNG/Makefile
+++ b/Examples/MAX32520/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/TRNG/README.md b/Examples/MAX32520/TRNG/README.md
index 3c3aeb23d1..7312d121aa 100644
--- a/Examples/MAX32520/TRNG/README.md
+++ b/Examples/MAX32520/TRNG/README.md
@@ -7,7 +7,7 @@ The true random number generator (TRNG) hardware is exercised in this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/TRNG/project.mk b/Examples/MAX32520/TRNG/project.mk
index 6e02906578..fae9288173 100644
--- a/Examples/MAX32520/TRNG/project.mk
+++ b/Examples/MAX32520/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/UCL/README.md b/Examples/MAX32520/UCL/README.md
index 1627bdd452..d9668beefa 100644
--- a/Examples/MAX32520/UCL/README.md
+++ b/Examples/MAX32520/UCL/README.md
@@ -10,7 +10,7 @@ TODO:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/UCL/project.mk b/Examples/MAX32520/UCL/project.mk
index 6c9e9fca69..673be81abd 100644
--- a/Examples/MAX32520/UCL/project.mk
+++ b/Examples/MAX32520/UCL/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32520/Watchdog/.vscode/README.md b/Examples/MAX32520/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32520/Watchdog/.vscode/README.md
+++ b/Examples/MAX32520/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32520/Watchdog/.vscode/settings.json b/Examples/MAX32520/Watchdog/.vscode/settings.json
index 21573f64cc..f4896b4588 100755
--- a/Examples/MAX32520/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32520/Watchdog/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32520/Watchdog/Makefile b/Examples/MAX32520/Watchdog/Makefile
index ac1bef43d8..e5b7e712ff 100644
--- a/Examples/MAX32520/Watchdog/Makefile
+++ b/Examples/MAX32520/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32520/Watchdog/README.md b/Examples/MAX32520/Watchdog/README.md
index 4286f56a87..e423d0470e 100644
--- a/Examples/MAX32520/Watchdog/README.md
+++ b/Examples/MAX32520/Watchdog/README.md
@@ -11,7 +11,7 @@ When the application begins, it initializes and starts the watchdog timer. The
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32520/Watchdog/project.mk b/Examples/MAX32520/Watchdog/project.mk
index ccd6aa2622..878df049ef 100644
--- a/Examples/MAX32520/Watchdog/project.mk
+++ b/Examples/MAX32520/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=MAX32520FTHR
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ADC/.vscode/README.md b/Examples/MAX32650/ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ADC/.vscode/README.md
+++ b/Examples/MAX32650/ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ADC/.vscode/settings.json b/Examples/MAX32650/ADC/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/ADC/.vscode/settings.json
+++ b/Examples/MAX32650/ADC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ADC/Makefile b/Examples/MAX32650/ADC/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/ADC/Makefile
+++ b/Examples/MAX32650/ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ADC/README.md b/Examples/MAX32650/ADC/README.md
index 35f1a33c55..2717507d18 100644
--- a/Examples/MAX32650/ADC/README.md
+++ b/Examples/MAX32650/ADC/README.md
@@ -11,7 +11,7 @@ Any reading that exceeds the full-scale value of the ADC will have an '*' append
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/ADC/project.mk b/Examples/MAX32650/ADC/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/ADC/project.mk
+++ b/Examples/MAX32650/ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ADC_MAX11261/.vscode/README.md b/Examples/MAX32650/ADC_MAX11261/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ADC_MAX11261/.vscode/README.md
+++ b/Examples/MAX32650/ADC_MAX11261/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ADC_MAX11261/.vscode/settings.json b/Examples/MAX32650/ADC_MAX11261/.vscode/settings.json
index 7ef6825dac..f7abbd6a0c 100755
--- a/Examples/MAX32650/ADC_MAX11261/.vscode/settings.json
+++ b/Examples/MAX32650/ADC_MAX11261/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ADC_MAX11261/Makefile b/Examples/MAX32650/ADC_MAX11261/Makefile
index 29fbec769a..93ee239280 100644
--- a/Examples/MAX32650/ADC_MAX11261/Makefile
+++ b/Examples/MAX32650/ADC_MAX11261/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ADC_MAX11261/README.md b/Examples/MAX32650/ADC_MAX11261/README.md
index 616cd8841c..0ff1d03996 100644
--- a/Examples/MAX32650/ADC_MAX11261/README.md
+++ b/Examples/MAX32650/ADC_MAX11261/README.md
@@ -11,7 +11,7 @@ Any reading that exceeds the full-scale value of the ADC will have an '*' append
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/ADC_MAX11261/project.mk b/Examples/MAX32650/ADC_MAX11261/project.mk
index 6a5ace294b..7071a3a2c2 100644
--- a/Examples/MAX32650/ADC_MAX11261/project.mk
+++ b/Examples/MAX32650/ADC_MAX11261/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/AES/.vscode/README.md b/Examples/MAX32650/AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/AES/.vscode/README.md
+++ b/Examples/MAX32650/AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/AES/.vscode/settings.json b/Examples/MAX32650/AES/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/AES/.vscode/settings.json
+++ b/Examples/MAX32650/AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/AES/Makefile b/Examples/MAX32650/AES/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/AES/Makefile
+++ b/Examples/MAX32650/AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/AES/README.md b/Examples/MAX32650/AES/README.md
index 6784eded8d..6e0aff0235 100644
--- a/Examples/MAX32650/AES/README.md
+++ b/Examples/MAX32650/AES/README.md
@@ -7,7 +7,7 @@ This application demonstrates both encryption and decryption using AES. A block
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/AES/project.mk b/Examples/MAX32650/AES/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/AES/project.mk
+++ b/Examples/MAX32650/AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/README.md b/Examples/MAX32650/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32650/ARM-DSP/README.md
+++ b/Examples/MAX32650/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_bayes_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_bayes_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_class_marks_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32650/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32650/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32650/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32650/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_class_marks_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_convolution_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_convolution_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_fir_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_fir_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_fir_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_matrix_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_matrix_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_svm_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_svm_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_svm_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32650/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32650/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32650/ARM-DSP/arm_variance_example/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32650/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32650/ARM-DSP/arm_variance_example/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32650/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX32650/ARM-DSP/arm_variance_example/project.mk
index 16d620aa9e..7d3b6a1627 100644
--- a/Examples/MAX32650/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX32650/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/CLCD/.vscode/README.md b/Examples/MAX32650/CLCD/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/CLCD/.vscode/README.md
+++ b/Examples/MAX32650/CLCD/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/CLCD/.vscode/settings.json b/Examples/MAX32650/CLCD/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/CLCD/.vscode/settings.json
+++ b/Examples/MAX32650/CLCD/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/CLCD/Makefile b/Examples/MAX32650/CLCD/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/CLCD/Makefile
+++ b/Examples/MAX32650/CLCD/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/CLCD/README.md b/Examples/MAX32650/CLCD/README.md
index 0dedb99eb4..57bb82c3a3 100644
--- a/Examples/MAX32650/CLCD/README.md
+++ b/Examples/MAX32650/CLCD/README.md
@@ -7,7 +7,7 @@ This example demonstrates the use of the LCD Display on the MAX32650 EV Kit. Thi
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/CLCD/project.mk b/Examples/MAX32650/CLCD/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/CLCD/project.mk
+++ b/Examples/MAX32650/CLCD/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/CRC/.vscode/README.md b/Examples/MAX32650/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/CRC/.vscode/README.md
+++ b/Examples/MAX32650/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/CRC/.vscode/settings.json b/Examples/MAX32650/CRC/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/CRC/.vscode/settings.json
+++ b/Examples/MAX32650/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/CRC/Makefile b/Examples/MAX32650/CRC/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/CRC/Makefile
+++ b/Examples/MAX32650/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/CRC/README.md b/Examples/MAX32650/CRC/README.md
index 2ec2a8dda0..0e739b79e2 100644
--- a/Examples/MAX32650/CRC/README.md
+++ b/Examples/MAX32650/CRC/README.md
@@ -9,7 +9,7 @@ To demonstrate, CRC values are calculated in software and using the TPU. The res
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/CRC/project.mk b/Examples/MAX32650/CRC/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/CRC/project.mk
+++ b/Examples/MAX32650/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/Coremark/.vscode/README.md b/Examples/MAX32650/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/Coremark/.vscode/README.md
+++ b/Examples/MAX32650/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/Coremark/.vscode/settings.json b/Examples/MAX32650/Coremark/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/Coremark/.vscode/settings.json
+++ b/Examples/MAX32650/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/Coremark/Makefile b/Examples/MAX32650/Coremark/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Coremark/Makefile
+++ b/Examples/MAX32650/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Coremark/README.md b/Examples/MAX32650/Coremark/README.md
index c5c0c5b272..3ddcf7d7b9 100644
--- a/Examples/MAX32650/Coremark/README.md
+++ b/Examples/MAX32650/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/Coremark/project.mk b/Examples/MAX32650/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32650/Coremark/project.mk
+++ b/Examples/MAX32650/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32650/DES/.vscode/README.md b/Examples/MAX32650/DES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/DES/.vscode/README.md
+++ b/Examples/MAX32650/DES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/DES/.vscode/settings.json b/Examples/MAX32650/DES/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/DES/.vscode/settings.json
+++ b/Examples/MAX32650/DES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/DES/Makefile b/Examples/MAX32650/DES/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/DES/Makefile
+++ b/Examples/MAX32650/DES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/DES/README.md b/Examples/MAX32650/DES/README.md
index d033ad3cea..b9b91f63f1 100644
--- a/Examples/MAX32650/DES/README.md
+++ b/Examples/MAX32650/DES/README.md
@@ -9,7 +9,7 @@ To demonstrate, encryption and decryption operations are executed with the TPU a
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/DES/project.mk b/Examples/MAX32650/DES/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/DES/project.mk
+++ b/Examples/MAX32650/DES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/DMA/.vscode/README.md b/Examples/MAX32650/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/DMA/.vscode/README.md
+++ b/Examples/MAX32650/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/DMA/.vscode/settings.json b/Examples/MAX32650/DMA/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/DMA/.vscode/settings.json
+++ b/Examples/MAX32650/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/DMA/Makefile b/Examples/MAX32650/DMA/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/DMA/Makefile
+++ b/Examples/MAX32650/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/DMA/README.md b/Examples/MAX32650/DMA/README.md
index 523c937010..b944330e45 100644
--- a/Examples/MAX32650/DMA/README.md
+++ b/Examples/MAX32650/DMA/README.md
@@ -9,7 +9,7 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/DMA/project.mk b/Examples/MAX32650/DMA/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/DMA/project.mk
+++ b/Examples/MAX32650/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32650/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32650/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32650/EEPROM_Emulator/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32650/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/EEPROM_Emulator/Makefile b/Examples/MAX32650/EEPROM_Emulator/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32650/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/EEPROM_Emulator/README.md b/Examples/MAX32650/EEPROM_Emulator/README.md
index 83f8e571ac..1248d50c1b 100644
--- a/Examples/MAX32650/EEPROM_Emulator/README.md
+++ b/Examples/MAX32650/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32650 to emulate a 64KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -48,7 +48,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/EEPROM_Emulator/project.mk b/Examples/MAX32650/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32650/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32650/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32650/EMCC/.vscode/README.md b/Examples/MAX32650/EMCC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/EMCC/.vscode/README.md
+++ b/Examples/MAX32650/EMCC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/EMCC/.vscode/settings.json b/Examples/MAX32650/EMCC/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/EMCC/.vscode/settings.json
+++ b/Examples/MAX32650/EMCC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/EMCC/Makefile b/Examples/MAX32650/EMCC/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/EMCC/Makefile
+++ b/Examples/MAX32650/EMCC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/EMCC/README.md b/Examples/MAX32650/EMCC/README.md
index 905a9c620a..ef5d9e8283 100644
--- a/Examples/MAX32650/EMCC/README.md
+++ b/Examples/MAX32650/EMCC/README.md
@@ -9,7 +9,7 @@ The same external memory operations are performed with both the cache enabled an
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/EMCC/project.mk b/Examples/MAX32650/EMCC/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/EMCC/project.mk
+++ b/Examples/MAX32650/EMCC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/Flash/.vscode/README.md b/Examples/MAX32650/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/Flash/.vscode/README.md
+++ b/Examples/MAX32650/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/Flash/.vscode/settings.json b/Examples/MAX32650/Flash/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/Flash/.vscode/settings.json
+++ b/Examples/MAX32650/Flash/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/Flash/Makefile b/Examples/MAX32650/Flash/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Flash/Makefile
+++ b/Examples/MAX32650/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Flash/README.md b/Examples/MAX32650/Flash/README.md
index 947c98f927..c9c3254b07 100644
--- a/Examples/MAX32650/Flash/README.md
+++ b/Examples/MAX32650/Flash/README.md
@@ -21,7 +21,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -42,9 +42,9 @@ If using the MAX32650FTHR:
## Building and Running
-**See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
+**See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
-This example supports all available MAX32650 evaluation platforms but comes _pre-configured_ for the MAX32650EVKIT by default. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
+This example supports all available MAX32650 evaluation platforms but comes _pre-configured_ for the MAX32650EVKIT by default. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
## Expected Output
diff --git a/Examples/MAX32650/Flash/project.mk b/Examples/MAX32650/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32650/Flash/project.mk
+++ b/Examples/MAX32650/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32650/Flash_CLI/.vscode/README.md b/Examples/MAX32650/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32650/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/Flash_CLI/.vscode/settings.json b/Examples/MAX32650/Flash_CLI/.vscode/settings.json
index fd0fd85749..7fb2f9ccf4 100755
--- a/Examples/MAX32650/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32650/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/Flash_CLI/Makefile b/Examples/MAX32650/Flash_CLI/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Flash_CLI/Makefile
+++ b/Examples/MAX32650/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Flash_CLI/README.md b/Examples/MAX32650/Flash_CLI/README.md
index c8f407f7e5..9eae8600c3 100644
--- a/Examples/MAX32650/Flash_CLI/README.md
+++ b/Examples/MAX32650/Flash_CLI/README.md
@@ -9,7 +9,7 @@ This example demonstates the CLI commands feature of FreeRTOS, various features
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/Flash_CLI/project.mk b/Examples/MAX32650/Flash_CLI/project.mk
index 71f3c54ec6..62f2c02d16 100644
--- a/Examples/MAX32650/Flash_CLI/project.mk
+++ b/Examples/MAX32650/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32650/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX32650/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX32650/FreeRTOSDemo/.vscode/settings.json
index fd0fd85749..7fb2f9ccf4 100755
--- a/Examples/MAX32650/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX32650/FreeRTOSDemo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/FreeRTOSDemo/Makefile b/Examples/MAX32650/FreeRTOSDemo/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/FreeRTOSDemo/Makefile
+++ b/Examples/MAX32650/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/FreeRTOSDemo/README.md b/Examples/MAX32650/FreeRTOSDemo/README.md
index 53832beba0..51b25c80f2 100644
--- a/Examples/MAX32650/FreeRTOSDemo/README.md
+++ b/Examples/MAX32650/FreeRTOSDemo/README.md
@@ -11,7 +11,7 @@ vCmdLineTask takes command inputs from the terminal and executes the command (th
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/FreeRTOSDemo/project.mk b/Examples/MAX32650/FreeRTOSDemo/project.mk
index 71f3c54ec6..62f2c02d16 100644
--- a/Examples/MAX32650/FreeRTOSDemo/project.mk
+++ b/Examples/MAX32650/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/GPIO/.vscode/README.md b/Examples/MAX32650/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/GPIO/.vscode/README.md
+++ b/Examples/MAX32650/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/GPIO/.vscode/settings.json b/Examples/MAX32650/GPIO/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/GPIO/.vscode/settings.json
+++ b/Examples/MAX32650/GPIO/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/GPIO/Makefile b/Examples/MAX32650/GPIO/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/GPIO/Makefile
+++ b/Examples/MAX32650/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/GPIO/README.md b/Examples/MAX32650/GPIO/README.md
index f9cdffe8e2..a42a2d9858 100644
--- a/Examples/MAX32650/GPIO/README.md
+++ b/Examples/MAX32650/GPIO/README.md
@@ -9,7 +9,7 @@ P2.28 (SW2) is continuously scanned and whatever value is read on that pin is th
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/GPIO/project.mk b/Examples/MAX32650/GPIO/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/GPIO/project.mk
+++ b/Examples/MAX32650/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/HBMC/.vscode/README.md b/Examples/MAX32650/HBMC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/HBMC/.vscode/README.md
+++ b/Examples/MAX32650/HBMC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/HBMC/.vscode/settings.json b/Examples/MAX32650/HBMC/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/HBMC/.vscode/settings.json
+++ b/Examples/MAX32650/HBMC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/HBMC/Makefile b/Examples/MAX32650/HBMC/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/HBMC/Makefile
+++ b/Examples/MAX32650/HBMC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/HBMC/README.md b/Examples/MAX32650/HBMC/README.md
index 2ee3597251..4228686d80 100644
--- a/Examples/MAX32650/HBMC/README.md
+++ b/Examples/MAX32650/HBMC/README.md
@@ -11,7 +11,7 @@ A function to blink an LED (found in ramfunc.c) is copied to external memory and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/HBMC/project.mk b/Examples/MAX32650/HBMC/project.mk
index b8bd327ba8..7f690ed7fa 100644
--- a/Examples/MAX32650/HBMC/project.mk
+++ b/Examples/MAX32650/HBMC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/Hello_World/.vscode/README.md b/Examples/MAX32650/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/Hello_World/.vscode/README.md
+++ b/Examples/MAX32650/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/Hello_World/.vscode/settings.json b/Examples/MAX32650/Hello_World/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32650/Hello_World/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/Hello_World/Makefile b/Examples/MAX32650/Hello_World/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Hello_World/Makefile
+++ b/Examples/MAX32650/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Hello_World/README.md b/Examples/MAX32650/Hello_World/README.md
index f0ec1af181..0445abcd0c 100644
--- a/Examples/MAX32650/Hello_World/README.md
+++ b/Examples/MAX32650/Hello_World/README.md
@@ -9,7 +9,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/Hello_World/project.mk b/Examples/MAX32650/Hello_World/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/Hello_World/project.mk
+++ b/Examples/MAX32650/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32650/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32650/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32650/Hello_World_Cpp/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32650/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/Hello_World_Cpp/Makefile b/Examples/MAX32650/Hello_World_Cpp/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32650/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Hello_World_Cpp/README.md b/Examples/MAX32650/Hello_World_Cpp/README.md
index 848d643184..aebcf30dd6 100644
--- a/Examples/MAX32650/Hello_World_Cpp/README.md
+++ b/Examples/MAX32650/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/Hello_World_Cpp/project.mk b/Examples/MAX32650/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32650/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32650/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32650/I2C/.vscode/README.md b/Examples/MAX32650/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/I2C/.vscode/README.md
+++ b/Examples/MAX32650/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/I2C/.vscode/settings.json b/Examples/MAX32650/I2C/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/I2C/.vscode/settings.json
+++ b/Examples/MAX32650/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/I2C/Makefile b/Examples/MAX32650/I2C/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/I2C/Makefile
+++ b/Examples/MAX32650/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/I2C/README.md b/Examples/MAX32650/I2C/README.md
index fc6b43a111..68030145c6 100644
--- a/Examples/MAX32650/I2C/README.md
+++ b/Examples/MAX32650/I2C/README.md
@@ -7,7 +7,7 @@ This example uses the I2C Master (I2C0) to read/write from/to the I2C Slave (I2C
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/I2C/project.mk b/Examples/MAX32650/I2C/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/I2C/project.mk
+++ b/Examples/MAX32650/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/I2C_MNGR/.vscode/README.md b/Examples/MAX32650/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32650/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/I2C_MNGR/.vscode/settings.json b/Examples/MAX32650/I2C_MNGR/.vscode/settings.json
index 03b0488492..2e78438545 100755
--- a/Examples/MAX32650/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32650/I2C_MNGR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/I2C_MNGR/Makefile b/Examples/MAX32650/I2C_MNGR/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/I2C_MNGR/Makefile
+++ b/Examples/MAX32650/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/I2C_MNGR/README.md b/Examples/MAX32650/I2C_MNGR/README.md
index b664adb567..52366fa312 100644
--- a/Examples/MAX32650/I2C_MNGR/README.md
+++ b/Examples/MAX32650/I2C_MNGR/README.md
@@ -11,7 +11,7 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/I2C_MNGR/project.mk b/Examples/MAX32650/I2C_MNGR/project.mk
index a9abd96ac0..a37f9f68bb 100644
--- a/Examples/MAX32650/I2C_MNGR/project.mk
+++ b/Examples/MAX32650/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/I2C_SCAN/.vscode/README.md b/Examples/MAX32650/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32650/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/I2C_SCAN/.vscode/settings.json b/Examples/MAX32650/I2C_SCAN/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32650/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/I2C_SCAN/Makefile b/Examples/MAX32650/I2C_SCAN/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/I2C_SCAN/Makefile
+++ b/Examples/MAX32650/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/I2C_SCAN/README.md b/Examples/MAX32650/I2C_SCAN/README.md
index 1d82c387dd..4420ff3fc7 100644
--- a/Examples/MAX32650/I2C_SCAN/README.md
+++ b/Examples/MAX32650/I2C_SCAN/README.md
@@ -6,7 +6,7 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/I2C_SCAN/project.mk b/Examples/MAX32650/I2C_SCAN/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/I2C_SCAN/project.mk
+++ b/Examples/MAX32650/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/I2C_Sensor/.vscode/README.md b/Examples/MAX32650/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32650/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/I2C_Sensor/.vscode/settings.json b/Examples/MAX32650/I2C_Sensor/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32650/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/I2C_Sensor/Makefile b/Examples/MAX32650/I2C_Sensor/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/I2C_Sensor/Makefile
+++ b/Examples/MAX32650/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/I2C_Sensor/README.md b/Examples/MAX32650/I2C_Sensor/README.md
index b49ce5e356..1cd5189dce 100644
--- a/Examples/MAX32650/I2C_Sensor/README.md
+++ b/Examples/MAX32650/I2C_Sensor/README.md
@@ -9,7 +9,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/I2C_Sensor/project.mk b/Examples/MAX32650/I2C_Sensor/project.mk
index c11af8371f..97f8dbbdc4 100644
--- a/Examples/MAX32650/I2C_Sensor/project.mk
+++ b/Examples/MAX32650/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32650/I2S/.vscode/README.md b/Examples/MAX32650/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/I2S/.vscode/README.md
+++ b/Examples/MAX32650/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/I2S/.vscode/settings.json b/Examples/MAX32650/I2S/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/I2S/.vscode/settings.json
+++ b/Examples/MAX32650/I2S/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/I2S/Makefile b/Examples/MAX32650/I2S/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/I2S/Makefile
+++ b/Examples/MAX32650/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/I2S/README.md b/Examples/MAX32650/I2S/README.md
index db5eaa81d7..1a302cabac 100644
--- a/Examples/MAX32650/I2S/README.md
+++ b/Examples/MAX32650/I2S/README.md
@@ -8,7 +8,7 @@ This example demonstrates of the SPIMSS I2S functionality. To demonstrate, an au
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/I2S/project.mk b/Examples/MAX32650/I2S/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/I2S/project.mk
+++ b/Examples/MAX32650/I2S/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/ICC/.vscode/README.md b/Examples/MAX32650/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/ICC/.vscode/README.md
+++ b/Examples/MAX32650/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/ICC/.vscode/settings.json b/Examples/MAX32650/ICC/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/ICC/.vscode/settings.json
+++ b/Examples/MAX32650/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/ICC/Makefile b/Examples/MAX32650/ICC/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/ICC/Makefile
+++ b/Examples/MAX32650/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/ICC/README.md b/Examples/MAX32650/ICC/README.md
index f409d11bac..84581924f7 100644
--- a/Examples/MAX32650/ICC/README.md
+++ b/Examples/MAX32650/ICC/README.md
@@ -12,7 +12,7 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/ICC/project.mk b/Examples/MAX32650/ICC/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/ICC/project.mk
+++ b/Examples/MAX32650/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/LP/.vscode/README.md b/Examples/MAX32650/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/LP/.vscode/README.md
+++ b/Examples/MAX32650/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/LP/.vscode/settings.json b/Examples/MAX32650/LP/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/LP/.vscode/settings.json
+++ b/Examples/MAX32650/LP/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/LP/Makefile b/Examples/MAX32650/LP/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/LP/Makefile
+++ b/Examples/MAX32650/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/LP/README.md b/Examples/MAX32650/LP/README.md
index 6f267e76ce..fba037dfbf 100644
--- a/Examples/MAX32650/LP/README.md
+++ b/Examples/MAX32650/LP/README.md
@@ -9,7 +9,7 @@ The wakeup source can be configured to be either the RTC clock or the push butto
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/LP/project.mk b/Examples/MAX32650/LP/project.mk
index 1690e28f82..793ed5777d 100644
--- a/Examples/MAX32650/LP/project.mk
+++ b/Examples/MAX32650/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/Library_Generate/.vscode/README.md b/Examples/MAX32650/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32650/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32650/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32650/Library_Generate/Makefile b/Examples/MAX32650/Library_Generate/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Library_Generate/Makefile
+++ b/Examples/MAX32650/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Library_Generate/README.md b/Examples/MAX32650/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32650/Library_Generate/README.md
+++ b/Examples/MAX32650/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/Library_Generate/project.mk b/Examples/MAX32650/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32650/Library_Generate/project.mk
+++ b/Examples/MAX32650/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32650/Library_Use/.vscode/README.md b/Examples/MAX32650/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/Library_Use/.vscode/README.md
+++ b/Examples/MAX32650/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/Library_Use/.vscode/settings.json b/Examples/MAX32650/Library_Use/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32650/Library_Use/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/Library_Use/Makefile b/Examples/MAX32650/Library_Use/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Library_Use/Makefile
+++ b/Examples/MAX32650/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Library_Use/README.md b/Examples/MAX32650/Library_Use/README.md
index b7701a99cc..dcedbad292 100644
--- a/Examples/MAX32650/Library_Use/README.md
+++ b/Examples/MAX32650/Library_Use/README.md
@@ -9,11 +9,11 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-This example supports all available MAX32650 evaluation platforms but comes _pre-configured_ for the MAX32650EVKIT by default. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
+This example supports all available MAX32650 evaluation platforms but comes _pre-configured_ for the MAX32650EVKIT by default. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
## Required Connections
diff --git a/Examples/MAX32650/Library_Use/project.mk b/Examples/MAX32650/Library_Use/project.mk
index 3d0d13dfd5..84dbf8cdff 100644
--- a/Examples/MAX32650/Library_Use/project.mk
+++ b/Examples/MAX32650/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32650/MAA/.vscode/README.md b/Examples/MAX32650/MAA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/MAA/.vscode/README.md
+++ b/Examples/MAX32650/MAA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/MAA/.vscode/settings.json b/Examples/MAX32650/MAA/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/MAA/.vscode/settings.json
+++ b/Examples/MAX32650/MAA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/MAA/Makefile b/Examples/MAX32650/MAA/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/MAA/Makefile
+++ b/Examples/MAX32650/MAA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/MAA/README.md b/Examples/MAX32650/MAA/README.md
index 9978336453..d16019c9e5 100644
--- a/Examples/MAX32650/MAA/README.md
+++ b/Examples/MAX32650/MAA/README.md
@@ -11,7 +11,7 @@ In this particular example the MAA is configured to compute an exponentiation. T
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/MAA/project.mk b/Examples/MAX32650/MAA/project.mk
index cd4ea566f8..682d322e09 100644
--- a/Examples/MAX32650/MAA/project.mk
+++ b/Examples/MAX32650/MAA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/OTP_Dump/.vscode/README.md b/Examples/MAX32650/OTP_Dump/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/OTP_Dump/.vscode/README.md
+++ b/Examples/MAX32650/OTP_Dump/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/OTP_Dump/.vscode/settings.json b/Examples/MAX32650/OTP_Dump/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/OTP_Dump/.vscode/settings.json
+++ b/Examples/MAX32650/OTP_Dump/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/OTP_Dump/Makefile b/Examples/MAX32650/OTP_Dump/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/OTP_Dump/Makefile
+++ b/Examples/MAX32650/OTP_Dump/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/OWM/.vscode/README.md b/Examples/MAX32650/OWM/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/OWM/.vscode/README.md
+++ b/Examples/MAX32650/OWM/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/OWM/.vscode/settings.json b/Examples/MAX32650/OWM/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/OWM/.vscode/settings.json
+++ b/Examples/MAX32650/OWM/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/OWM/Makefile b/Examples/MAX32650/OWM/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/OWM/Makefile
+++ b/Examples/MAX32650/OWM/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/OWM/README.md b/Examples/MAX32650/OWM/README.md
index 76692267e6..b48421328c 100644
--- a/Examples/MAX32650/OWM/README.md
+++ b/Examples/MAX32650/OWM/README.md
@@ -7,7 +7,7 @@ This example demonstrate how 1-Wire master can be configured and read slave ROM
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/OWM/project.mk b/Examples/MAX32650/OWM/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/OWM/project.mk
+++ b/Examples/MAX32650/OWM/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/Pulse_Train/.vscode/README.md b/Examples/MAX32650/Pulse_Train/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/Pulse_Train/.vscode/README.md
+++ b/Examples/MAX32650/Pulse_Train/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/Pulse_Train/.vscode/settings.json b/Examples/MAX32650/Pulse_Train/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/Pulse_Train/.vscode/settings.json
+++ b/Examples/MAX32650/Pulse_Train/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/Pulse_Train/Makefile b/Examples/MAX32650/Pulse_Train/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Pulse_Train/Makefile
+++ b/Examples/MAX32650/Pulse_Train/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Pulse_Train/README.md b/Examples/MAX32650/Pulse_Train/README.md
index daf257ee9e..569f9645ab 100644
--- a/Examples/MAX32650/Pulse_Train/README.md
+++ b/Examples/MAX32650/Pulse_Train/README.md
@@ -11,7 +11,7 @@ The second, PT15, is set to generate a 10Hz square wave. If you make the connec
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/Pulse_Train/project.mk b/Examples/MAX32650/Pulse_Train/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/Pulse_Train/project.mk
+++ b/Examples/MAX32650/Pulse_Train/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/RTC/.vscode/README.md b/Examples/MAX32650/RTC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/RTC/.vscode/README.md
+++ b/Examples/MAX32650/RTC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/RTC/.vscode/settings.json b/Examples/MAX32650/RTC/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/RTC/.vscode/settings.json
+++ b/Examples/MAX32650/RTC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/RTC/Makefile b/Examples/MAX32650/RTC/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/RTC/Makefile
+++ b/Examples/MAX32650/RTC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/RTC/README.md b/Examples/MAX32650/RTC/README.md
index 17b31a444d..94382a8591 100644
--- a/Examples/MAX32650/RTC/README.md
+++ b/Examples/MAX32650/RTC/README.md
@@ -13,7 +13,7 @@ Pressing SW2 will output the current value of the RTC to the console UART.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/RTC/project.mk b/Examples/MAX32650/RTC/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/RTC/project.mk
+++ b/Examples/MAX32650/RTC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/RTC_Backup/.vscode/README.md b/Examples/MAX32650/RTC_Backup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/RTC_Backup/.vscode/README.md
+++ b/Examples/MAX32650/RTC_Backup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/RTC_Backup/.vscode/settings.json b/Examples/MAX32650/RTC_Backup/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/RTC_Backup/.vscode/settings.json
+++ b/Examples/MAX32650/RTC_Backup/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/RTC_Backup/Makefile b/Examples/MAX32650/RTC_Backup/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/RTC_Backup/Makefile
+++ b/Examples/MAX32650/RTC_Backup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/RTC_Backup/README.md b/Examples/MAX32650/RTC_Backup/README.md
index 7ab8d7dc7a..02a8f8a8d1 100644
--- a/Examples/MAX32650/RTC_Backup/README.md
+++ b/Examples/MAX32650/RTC_Backup/README.md
@@ -10,7 +10,7 @@ The RTC time-of-day alarm is used to wake the device from backup mode every TIME
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -30,8 +30,6 @@ The time-of-day alarm is set to wake the device every 7 seconds.
When the alarm goes off it will print the current time to the console.
RTC started
-RTC Trimmed to 32768 Hz
-MXC_TRIMSIR->rtc = 0x2730000
Current Time (dd:hh:mm:ss): 00:00:00:07
diff --git a/Examples/MAX32650/RTC_Backup/project.mk b/Examples/MAX32650/RTC_Backup/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/RTC_Backup/project.mk
+++ b/Examples/MAX32650/RTC_Backup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32650/SCPA_OTP_Dump/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/SCPA_OTP_Dump/.vscode/README.md
+++ b/Examples/MAX32650/SCPA_OTP_Dump/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/SCPA_OTP_Dump/.vscode/settings.json b/Examples/MAX32650/SCPA_OTP_Dump/.vscode/settings.json
index 9d7041aee9..0e32b55f8a 100755
--- a/Examples/MAX32650/SCPA_OTP_Dump/.vscode/settings.json
+++ b/Examples/MAX32650/SCPA_OTP_Dump/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/SCPA_OTP_Dump/Makefile b/Examples/MAX32650/SCPA_OTP_Dump/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/SCPA_OTP_Dump/Makefile
+++ b/Examples/MAX32650/SCPA_OTP_Dump/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/SCPA_OTP_Dump/README.md b/Examples/MAX32650/SCPA_OTP_Dump/README.md
index 944eb115cd..124bc26fd1 100644
--- a/Examples/MAX32650/SCPA_OTP_Dump/README.md
+++ b/Examples/MAX32650/SCPA_OTP_Dump/README.md
@@ -20,7 +20,7 @@ PROJ_CFLAGS+=-DMAX32651_A1
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/SCPA_OTP_Dump/project.mk b/Examples/MAX32650/SCPA_OTP_Dump/project.mk
index 5bef565e37..5692908545 100644
--- a/Examples/MAX32650/SCPA_OTP_Dump/project.mk
+++ b/Examples/MAX32650/SCPA_OTP_Dump/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/SDHC_FAT/.cproject b/Examples/MAX32650/SDHC_FAT/.cproject
index 5ee7f6437f..5e62435311 100644
--- a/Examples/MAX32650/SDHC_FAT/.cproject
+++ b/Examples/MAX32650/SDHC_FAT/.cproject
@@ -34,7 +34,7 @@
-
+
diff --git a/Examples/MAX32650/SDHC_FAT/.vscode/README.md b/Examples/MAX32650/SDHC_FAT/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/SDHC_FAT/.vscode/README.md
+++ b/Examples/MAX32650/SDHC_FAT/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/SDHC_FAT/.vscode/settings.json b/Examples/MAX32650/SDHC_FAT/.vscode/settings.json
index 0bdfd0a178..9178d25390 100755
--- a/Examples/MAX32650/SDHC_FAT/.vscode/settings.json
+++ b/Examples/MAX32650/SDHC_FAT/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -55,7 +56,7 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/CLI/inc",
"${config:MAXIM_PATH}/Libraries/SDHC/Include",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source"
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source"
],
"C_Cpp.default.browse.path": [
"${workspaceFolder}",
@@ -64,13 +65,14 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/CLI/src",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source"
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source"
],
"C_Cpp.default.defines": [
diff --git a/Examples/MAX32650/SDHC_FAT/Makefile b/Examples/MAX32650/SDHC_FAT/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/SDHC_FAT/Makefile
+++ b/Examples/MAX32650/SDHC_FAT/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/SDHC_FAT/README.md b/Examples/MAX32650/SDHC_FAT/README.md
index b9dff00e80..f591e59dac 100644
--- a/Examples/MAX32650/SDHC_FAT/README.md
+++ b/Examples/MAX32650/SDHC_FAT/README.md
@@ -6,7 +6,7 @@ This example demonstrates the SDHC FAT Filesystem. The terminal prompts with a l
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/SDHC_FAT/project.mk b/Examples/MAX32650/SDHC_FAT/project.mk
index bc88bd6fd7..12e82a57a8 100644
--- a/Examples/MAX32650/SDHC_FAT/project.mk
+++ b/Examples/MAX32650/SDHC_FAT/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/SDHC_Raw/.cproject b/Examples/MAX32650/SDHC_Raw/.cproject
index af11967dfe..b6fbfb51cb 100644
--- a/Examples/MAX32650/SDHC_Raw/.cproject
+++ b/Examples/MAX32650/SDHC_Raw/.cproject
@@ -33,7 +33,7 @@
-
+
diff --git a/Examples/MAX32650/SDHC_Raw/.vscode/README.md b/Examples/MAX32650/SDHC_Raw/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/SDHC_Raw/.vscode/README.md
+++ b/Examples/MAX32650/SDHC_Raw/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/SDHC_Raw/.vscode/settings.json b/Examples/MAX32650/SDHC_Raw/.vscode/settings.json
index 7cc42dea93..cee33d480e 100755
--- a/Examples/MAX32650/SDHC_Raw/.vscode/settings.json
+++ b/Examples/MAX32650/SDHC_Raw/.vscode/settings.json
@@ -48,13 +48,14 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/SDHC/Include",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source"
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source"
],
"C_Cpp.default.browse.path": [
"${workspaceFolder}",
@@ -63,12 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source"
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source"
],
"C_Cpp.default.defines": [
diff --git a/Examples/MAX32650/SDHC_Raw/Makefile b/Examples/MAX32650/SDHC_Raw/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/SDHC_Raw/Makefile
+++ b/Examples/MAX32650/SDHC_Raw/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/SDHC_Raw/README.md b/Examples/MAX32650/SDHC_Raw/README.md
index 0464865ea5..c2d2115e2f 100644
--- a/Examples/MAX32650/SDHC_Raw/README.md
+++ b/Examples/MAX32650/SDHC_Raw/README.md
@@ -7,7 +7,7 @@ This example demonstrates reading and writing to an SD card using both 1-bit and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/SDHC_Raw/project.mk b/Examples/MAX32650/SDHC_Raw/project.mk
index fad118a1d5..2f4fa9e82e 100644
--- a/Examples/MAX32650/SDHC_Raw/project.mk
+++ b/Examples/MAX32650/SDHC_Raw/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/SPI/.vscode/README.md b/Examples/MAX32650/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/SPI/.vscode/README.md
+++ b/Examples/MAX32650/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/SPI/.vscode/settings.json b/Examples/MAX32650/SPI/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/SPI/.vscode/settings.json
+++ b/Examples/MAX32650/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/SPI/Makefile b/Examples/MAX32650/SPI/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/SPI/Makefile
+++ b/Examples/MAX32650/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/SPI/README.md b/Examples/MAX32650/SPI/README.md
index 0f9f4f564c..9b07996ef5 100644
--- a/Examples/MAX32650/SPI/README.md
+++ b/Examples/MAX32650/SPI/README.md
@@ -11,7 +11,7 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/SPI/project.mk b/Examples/MAX32650/SPI/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/SPI/project.mk
+++ b/Examples/MAX32650/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/SPIMSS/.vscode/README.md b/Examples/MAX32650/SPIMSS/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/SPIMSS/.vscode/README.md
+++ b/Examples/MAX32650/SPIMSS/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/SPIMSS/.vscode/settings.json b/Examples/MAX32650/SPIMSS/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/SPIMSS/.vscode/settings.json
+++ b/Examples/MAX32650/SPIMSS/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/SPIMSS/Makefile b/Examples/MAX32650/SPIMSS/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/SPIMSS/Makefile
+++ b/Examples/MAX32650/SPIMSS/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/SPIMSS/README.md b/Examples/MAX32650/SPIMSS/README.md
index dd54149fc5..15b0ead404 100644
--- a/Examples/MAX32650/SPIMSS/README.md
+++ b/Examples/MAX32650/SPIMSS/README.md
@@ -10,7 +10,7 @@ Multiple word sizes (2 through 16 bits) are demonstrated. To select between blo
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/SPIMSS/project.mk b/Examples/MAX32650/SPIMSS/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/SPIMSS/project.mk
+++ b/Examples/MAX32650/SPIMSS/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/SPIXF/.vscode/README.md b/Examples/MAX32650/SPIXF/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/SPIXF/.vscode/README.md
+++ b/Examples/MAX32650/SPIXF/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/SPIXF/.vscode/settings.json b/Examples/MAX32650/SPIXF/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/SPIXF/.vscode/settings.json
+++ b/Examples/MAX32650/SPIXF/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/SPIXF/Makefile b/Examples/MAX32650/SPIXF/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/SPIXF/Makefile
+++ b/Examples/MAX32650/SPIXF/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/SPIXF/README.md b/Examples/MAX32650/SPIXF/README.md
index 8fd57fefba..30ae84baf9 100644
--- a/Examples/MAX32650/SPIXF/README.md
+++ b/Examples/MAX32650/SPIXF/README.md
@@ -7,7 +7,7 @@ This example communicates with the MX25 flash on the EvKit. It loads code onto i
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/SPIXF/project.mk b/Examples/MAX32650/SPIXF/project.mk
index 62b4ab1d2f..a1168a4745 100644
--- a/Examples/MAX32650/SPIXF/project.mk
+++ b/Examples/MAX32650/SPIXF/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/SPIXF_ICC/.vscode/README.md b/Examples/MAX32650/SPIXF_ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/SPIXF_ICC/.vscode/README.md
+++ b/Examples/MAX32650/SPIXF_ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/SPIXF_ICC/.vscode/settings.json b/Examples/MAX32650/SPIXF_ICC/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/SPIXF_ICC/.vscode/settings.json
+++ b/Examples/MAX32650/SPIXF_ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/SPIXF_ICC/Makefile b/Examples/MAX32650/SPIXF_ICC/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/SPIXF_ICC/Makefile
+++ b/Examples/MAX32650/SPIXF_ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/SPIXF_ICC/README.md b/Examples/MAX32650/SPIXF_ICC/README.md
index 8a5d8d143b..a24327d3d7 100644
--- a/Examples/MAX32650/SPIXF_ICC/README.md
+++ b/Examples/MAX32650/SPIXF_ICC/README.md
@@ -9,7 +9,7 @@ A sample function which performs a multiplication operation repeatedly is loaded
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/SPIXF_ICC/project.mk b/Examples/MAX32650/SPIXF_ICC/project.mk
index 62b4ab1d2f..a1168a4745 100644
--- a/Examples/MAX32650/SPIXF_ICC/project.mk
+++ b/Examples/MAX32650/SPIXF_ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/SPIXR/.vscode/README.md b/Examples/MAX32650/SPIXR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/SPIXR/.vscode/README.md
+++ b/Examples/MAX32650/SPIXR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/SPIXR/.vscode/settings.json b/Examples/MAX32650/SPIXR/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/SPIXR/.vscode/settings.json
+++ b/Examples/MAX32650/SPIXR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/SPIXR/Makefile b/Examples/MAX32650/SPIXR/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/SPIXR/Makefile
+++ b/Examples/MAX32650/SPIXR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/SPIXR/README.md b/Examples/MAX32650/SPIXR/README.md
index b2d9430c42..ace7dc1980 100644
--- a/Examples/MAX32650/SPIXR/README.md
+++ b/Examples/MAX32650/SPIXR/README.md
@@ -9,7 +9,7 @@ It writes random data to the SPI RAM and reads it back.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/SPIXR/project.mk b/Examples/MAX32650/SPIXR/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/SPIXR/project.mk
+++ b/Examples/MAX32650/SPIXR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32650/SPI_MasterSlave/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/SPI_MasterSlave/.vscode/README.md
+++ b/Examples/MAX32650/SPI_MasterSlave/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/SPI_MasterSlave/.vscode/settings.json b/Examples/MAX32650/SPI_MasterSlave/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/SPI_MasterSlave/.vscode/settings.json
+++ b/Examples/MAX32650/SPI_MasterSlave/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/SPI_MasterSlave/Makefile b/Examples/MAX32650/SPI_MasterSlave/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/SPI_MasterSlave/Makefile
+++ b/Examples/MAX32650/SPI_MasterSlave/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/SPI_MasterSlave/README.md b/Examples/MAX32650/SPI_MasterSlave/README.md
index 684ce03a4a..959ac79e4d 100644
--- a/Examples/MAX32650/SPI_MasterSlave/README.md
+++ b/Examples/MAX32650/SPI_MasterSlave/README.md
@@ -11,7 +11,7 @@ Once the master ends the transaction, the data received by the master and the sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/SPI_MasterSlave/project.mk b/Examples/MAX32650/SPI_MasterSlave/project.mk
index e2ea99ba18..f997ec695d 100644
--- a/Examples/MAX32650/SPI_MasterSlave/project.mk
+++ b/Examples/MAX32650/SPI_MasterSlave/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32650/Semaphore/.vscode/README.md b/Examples/MAX32650/Semaphore/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/Semaphore/.vscode/README.md
+++ b/Examples/MAX32650/Semaphore/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/Semaphore/.vscode/settings.json b/Examples/MAX32650/Semaphore/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/Semaphore/.vscode/settings.json
+++ b/Examples/MAX32650/Semaphore/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/Semaphore/Makefile b/Examples/MAX32650/Semaphore/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Semaphore/Makefile
+++ b/Examples/MAX32650/Semaphore/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Semaphore/README.md b/Examples/MAX32650/Semaphore/README.md
index 4e7b220033..d3a80cd217 100644
--- a/Examples/MAX32650/Semaphore/README.md
+++ b/Examples/MAX32650/Semaphore/README.md
@@ -9,7 +9,7 @@ A semaphore is shared between task A and task B. The buttons are used to start a
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/Semaphore/project.mk b/Examples/MAX32650/Semaphore/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/Semaphore/project.mk
+++ b/Examples/MAX32650/Semaphore/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/SysTick/.vscode/README.md b/Examples/MAX32650/SysTick/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/SysTick/.vscode/README.md
+++ b/Examples/MAX32650/SysTick/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/SysTick/.vscode/settings.json b/Examples/MAX32650/SysTick/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/SysTick/.vscode/settings.json
+++ b/Examples/MAX32650/SysTick/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/SysTick/Makefile b/Examples/MAX32650/SysTick/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/SysTick/Makefile
+++ b/Examples/MAX32650/SysTick/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/SysTick/README.md b/Examples/MAX32650/SysTick/README.md
index b1f61fbe68..ce25b9e3b2 100644
--- a/Examples/MAX32650/SysTick/README.md
+++ b/Examples/MAX32650/SysTick/README.md
@@ -7,7 +7,7 @@ This example demostrates the use of the SysTick Interrupt on the MAX32650. The s
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/SysTick/project.mk b/Examples/MAX32650/SysTick/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/SysTick/project.mk
+++ b/Examples/MAX32650/SysTick/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/TMR/.vscode/README.md b/Examples/MAX32650/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/TMR/.vscode/README.md
+++ b/Examples/MAX32650/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/TMR/.vscode/settings.json b/Examples/MAX32650/TMR/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/TMR/.vscode/settings.json
+++ b/Examples/MAX32650/TMR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/TMR/Makefile b/Examples/MAX32650/TMR/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/TMR/Makefile
+++ b/Examples/MAX32650/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/TMR/README.md b/Examples/MAX32650/TMR/README.md
index 4b14290648..f90fba5a15 100644
--- a/Examples/MAX32650/TMR/README.md
+++ b/Examples/MAX32650/TMR/README.md
@@ -13,7 +13,7 @@ Three timers are used to demonstrate three different modes of the general purpos
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/TMR/project.mk b/Examples/MAX32650/TMR/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/TMR/project.mk
+++ b/Examples/MAX32650/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/TRNG/.vscode/README.md b/Examples/MAX32650/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/TRNG/.vscode/README.md
+++ b/Examples/MAX32650/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/TRNG/.vscode/settings.json b/Examples/MAX32650/TRNG/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/TRNG/.vscode/settings.json
+++ b/Examples/MAX32650/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/TRNG/Makefile b/Examples/MAX32650/TRNG/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/TRNG/Makefile
+++ b/Examples/MAX32650/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/TRNG/README.md b/Examples/MAX32650/TRNG/README.md
index 2767a355a2..7c362a197e 100644
--- a/Examples/MAX32650/TRNG/README.md
+++ b/Examples/MAX32650/TRNG/README.md
@@ -7,7 +7,7 @@ This example uses the various functions of the True Random Number Generator. Spe
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/TRNG/project.mk b/Examples/MAX32650/TRNG/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/TRNG/project.mk
+++ b/Examples/MAX32650/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/Temp_Monitor/.vscode/README.md b/Examples/MAX32650/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX32650/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/Temp_Monitor/.vscode/settings.json b/Examples/MAX32650/Temp_Monitor/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX32650/Temp_Monitor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/Temp_Monitor/Makefile b/Examples/MAX32650/Temp_Monitor/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Temp_Monitor/Makefile
+++ b/Examples/MAX32650/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Temp_Monitor/README.md b/Examples/MAX32650/Temp_Monitor/README.md
index da409bd99b..33122e4340 100644
--- a/Examples/MAX32650/Temp_Monitor/README.md
+++ b/Examples/MAX32650/Temp_Monitor/README.md
@@ -15,7 +15,7 @@ The temperature limits, flash storage page, and RTC time-of-day alarm period are
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/Temp_Monitor/project.mk b/Examples/MAX32650/Temp_Monitor/project.mk
index 9c8a1c719b..b7080f266a 100644
--- a/Examples/MAX32650/Temp_Monitor/project.mk
+++ b/Examples/MAX32650/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/UART/.vscode/README.md b/Examples/MAX32650/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/UART/.vscode/README.md
+++ b/Examples/MAX32650/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/UART/.vscode/settings.json b/Examples/MAX32650/UART/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/UART/.vscode/settings.json
+++ b/Examples/MAX32650/UART/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/UART/Makefile b/Examples/MAX32650/UART/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/UART/Makefile
+++ b/Examples/MAX32650/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/UART/README.md b/Examples/MAX32650/UART/README.md
index 3878525b4d..b273f5ae6e 100644
--- a/Examples/MAX32650/UART/README.md
+++ b/Examples/MAX32650/UART/README.md
@@ -7,7 +7,7 @@ To demonstrate the use of the UART peripheral, data is sent between two UART por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/UART/project.mk b/Examples/MAX32650/UART/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/UART/project.mk
+++ b/Examples/MAX32650/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/UCL/README.md b/Examples/MAX32650/UCL/README.md
index e778da9d16..6cc9832a32 100644
--- a/Examples/MAX32650/UCL/README.md
+++ b/Examples/MAX32650/UCL/README.md
@@ -9,7 +9,7 @@ TODO:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/UCL/project.mk b/Examples/MAX32650/UCL/project.mk
index 41f78c9cb1..d3ea2f7c2d 100644
--- a/Examples/MAX32650/UCL/project.mk
+++ b/Examples/MAX32650/UCL/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/USB/USB_CDCACM/.vscode/README.md b/Examples/MAX32650/USB/USB_CDCACM/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/USB/USB_CDCACM/.vscode/README.md
+++ b/Examples/MAX32650/USB/USB_CDCACM/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/USB/USB_CDCACM/.vscode/settings.json b/Examples/MAX32650/USB/USB_CDCACM/.vscode/settings.json
index 8926f5a8b4..a87b60bd8e 100755
--- a/Examples/MAX32650/USB/USB_CDCACM/.vscode/settings.json
+++ b/Examples/MAX32650/USB/USB_CDCACM/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -67,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/USB/USB_CDCACM/Makefile b/Examples/MAX32650/USB/USB_CDCACM/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/USB/USB_CDCACM/Makefile
+++ b/Examples/MAX32650/USB/USB_CDCACM/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/USB/USB_CDCACM/README.md b/Examples/MAX32650/USB/USB_CDCACM/README.md
index 683a173df2..e573ad5deb 100644
--- a/Examples/MAX32650/USB/USB_CDCACM/README.md
+++ b/Examples/MAX32650/USB/USB_CDCACM/README.md
@@ -7,7 +7,7 @@ The example demonstartes the use of USB CDC-ACM driver class. After doing the re
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -25,7 +25,7 @@ Universal instructions on building, flashing, and debugging this project can be
The Console UART of the device will output these messages:
```
-***** MAX32650 USB CDC-ACM Example *****
+***** USB CDC-ACM Example *****
Waiting for VBUS...
VBUS Connect
Suspended
diff --git a/Examples/MAX32650/USB/USB_CDCACM/main.c b/Examples/MAX32650/USB/USB_CDCACM/main.c
index c5eb0747b0..29b50f8a7d 100644
--- a/Examples/MAX32650/USB/USB_CDCACM/main.c
+++ b/Examples/MAX32650/USB/USB_CDCACM/main.c
@@ -96,7 +96,7 @@ int main(void)
{
maxusb_cfg_options_t usb_opts;
- printf("\n\n***** " TOSTRING(TARGET) " USB CDC-ACM Example *****\n");
+ printf("\n\n***** USB CDC-ACM Example *****\n");
printf("Waiting for VBUS...\n");
/* Initialize state */
diff --git a/Examples/MAX32650/USB/USB_CDCACM/project.mk b/Examples/MAX32650/USB/USB_CDCACM/project.mk
index 2bd9f02ac5..fef00cb404 100644
--- a/Examples/MAX32650/USB/USB_CDCACM/project.mk
+++ b/Examples/MAX32650/USB/USB_CDCACM/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
index 8926f5a8b4..a87b60bd8e 100755
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -67,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/Makefile b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/Makefile
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/README.md b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/README.md
index ec57814668..5097c634e1 100644
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/README.md
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/README.md
@@ -7,7 +7,7 @@ The example demonstartes the use of USB composite device with Mass Storage drive
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -25,7 +25,7 @@ Universal instructions on building, flashing, and debugging this project can be
The Console UART of the device will output these messages:
```
-***** MAX32650 USB Composite Device (CDCACM and Mass Storage) Example *****
+***** USB Composite Device (CDCACM and Mass Storage) Example *****
Waiting for VBUS...
VBUS Connect
Suspended
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/main.c b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/main.c
index 23242c6b26..5711fea27a 100644
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/main.c
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/main.c
@@ -112,8 +112,7 @@ int main(void)
{
maxusb_cfg_options_t usb_opts;
- printf("\n\n***** " TOSTRING(
- TARGET) " USB Composite Device (CDCACM and Mass Storage) Example *****\n");
+ printf("\n\n***** USB Composite Device (CDCACM and Mass Storage) Example *****\n");
printf("Waiting for VBUS...\n");
/* Initialize state */
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/project.mk b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/project.mk
index 18fb84b709..6a30aa04c3 100644
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/project.mk
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
index 8926f5a8b4..a87b60bd8e 100755
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -67,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/Makefile b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/Makefile
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/README.md b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/README.md
index 9f29ba3afb..8fb6af60a4 100644
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/README.md
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/README.md
@@ -7,7 +7,7 @@ The example demonstartes the use of USB composite device with Mass Storage drive
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -25,7 +25,7 @@ Universal instructions on building, flashing, and debugging this project can be
The Console UART of the device will output these messages:
```
-***** MAX32650 USB Composite Device (Keyboard and Mass Storage) Example *****
+***** USB Composite Device (Keyboard and Mass Storage) Example *****
Waiting for VBUS...
VBUS Connect
Suspended
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/main.c b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/main.c
index 23e29972ab..fd2b132430 100644
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/main.c
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/main.c
@@ -103,8 +103,7 @@ int main(void)
{
maxusb_cfg_options_t usb_opts;
- printf("\n\n***** " TOSTRING(
- TARGET) " USB Composite Device (Keyboard and Mass Storage) Example *****\n");
+ printf("\n\n***** USB Composite Device (Keyboard and Mass Storage) Example *****\n");
printf("Waiting for VBUS...\n");
/* Initialize state */
diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/project.mk b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/project.mk
index af02b38309..a91d99845f 100644
--- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/project.mk
+++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/README.md b/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/README.md
+++ b/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/settings.json b/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/settings.json
index 8926f5a8b4..a87b60bd8e 100755
--- a/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/settings.json
+++ b/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -67,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/USB/USB_HIDKeyboard/Makefile b/Examples/MAX32650/USB/USB_HIDKeyboard/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/USB/USB_HIDKeyboard/Makefile
+++ b/Examples/MAX32650/USB/USB_HIDKeyboard/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/USB/USB_HIDKeyboard/README.md b/Examples/MAX32650/USB/USB_HIDKeyboard/README.md
index 2eaccf620f..dbce020cd1 100644
--- a/Examples/MAX32650/USB/USB_HIDKeyboard/README.md
+++ b/Examples/MAX32650/USB/USB_HIDKeyboard/README.md
@@ -7,7 +7,7 @@ The example demonstartes the use of USB HID driver class. After doing the requir
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -25,7 +25,7 @@ Universal instructions on building, flashing, and debugging this project can be
The Console UART of the device will output these messages:
```
-***** MAX32650 USB HID Keyboard Example *****
+***** USB HID Keyboard Example *****
Waiting for VBUS...
VBUS Connect
Suspended
diff --git a/Examples/MAX32650/USB/USB_HIDKeyboard/main.c b/Examples/MAX32650/USB/USB_HIDKeyboard/main.c
index 71344738cc..4f63fb125a 100644
--- a/Examples/MAX32650/USB/USB_HIDKeyboard/main.c
+++ b/Examples/MAX32650/USB/USB_HIDKeyboard/main.c
@@ -79,7 +79,7 @@ int main(void)
{
maxusb_cfg_options_t usb_opts;
- printf("\n\n***** " TOSTRING(TARGET) " USB HID Keyboard Example *****\n");
+ printf("\n\n***** USB HID Keyboard Example *****\n");
printf("Waiting for VBUS...\n");
/* Initialize state */
diff --git a/Examples/MAX32650/USB/USB_HIDKeyboard/project.mk b/Examples/MAX32650/USB/USB_HIDKeyboard/project.mk
index 2bd9f02ac5..fef00cb404 100644
--- a/Examples/MAX32650/USB/USB_HIDKeyboard/project.mk
+++ b/Examples/MAX32650/USB/USB_HIDKeyboard/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/USB/USB_MassStorage/.vscode/README.md b/Examples/MAX32650/USB/USB_MassStorage/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/USB/USB_MassStorage/.vscode/README.md
+++ b/Examples/MAX32650/USB/USB_MassStorage/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/USB/USB_MassStorage/.vscode/settings.json b/Examples/MAX32650/USB/USB_MassStorage/.vscode/settings.json
index 8926f5a8b4..a87b60bd8e 100755
--- a/Examples/MAX32650/USB/USB_MassStorage/.vscode/settings.json
+++ b/Examples/MAX32650/USB/USB_MassStorage/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -67,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/USB/USB_MassStorage/Makefile b/Examples/MAX32650/USB/USB_MassStorage/Makefile
index 15da60b4f1..2765ae15e1 100644
--- a/Examples/MAX32650/USB/USB_MassStorage/Makefile
+++ b/Examples/MAX32650/USB/USB_MassStorage/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/USB/USB_MassStorage/README.md b/Examples/MAX32650/USB/USB_MassStorage/README.md
index 3bb47027eb..a10863b45d 100644
--- a/Examples/MAX32650/USB/USB_MassStorage/README.md
+++ b/Examples/MAX32650/USB/USB_MassStorage/README.md
@@ -7,7 +7,7 @@ The example demonstartes the use of USB Mass Storage driver class. After doing t
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -25,7 +25,7 @@ Universal instructions on building, flashing, and debugging this project can be
The Console UART of the device will output these messages:
```
-***** MAX32650 USB Mass Storage Example *****
+***** USB Mass Storage Example *****
Waiting for VBUS...
VBUS Connect
Suspended
diff --git a/Examples/MAX32650/USB/USB_MassStorage/main.c b/Examples/MAX32650/USB/USB_MassStorage/main.c
index fb688114e9..c547e940ca 100644
--- a/Examples/MAX32650/USB/USB_MassStorage/main.c
+++ b/Examples/MAX32650/USB/USB_MassStorage/main.c
@@ -99,7 +99,7 @@ int main(void)
{
maxusb_cfg_options_t usb_opts;
- printf("\n\n***** " TOSTRING(TARGET) " USB Mass Storage Example *****\n");
+ printf("\n\n***** USB Mass Storage Example *****\n");
printf("Waiting for VBUS...\n");
/* Initialize state */
diff --git a/Examples/MAX32650/USB/USB_MassStorage/project.mk b/Examples/MAX32650/USB/USB_MassStorage/project.mk
index 1ba9cfd404..f044b553dc 100644
--- a/Examples/MAX32650/USB/USB_MassStorage/project.mk
+++ b/Examples/MAX32650/USB/USB_MassStorage/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/Watchdog/.vscode/README.md b/Examples/MAX32650/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/Watchdog/.vscode/README.md
+++ b/Examples/MAX32650/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/Watchdog/.vscode/settings.json b/Examples/MAX32650/Watchdog/.vscode/settings.json
index 4a0e478a58..d29880758a 100755
--- a/Examples/MAX32650/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32650/Watchdog/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/Watchdog/Makefile b/Examples/MAX32650/Watchdog/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/Watchdog/Makefile
+++ b/Examples/MAX32650/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/Watchdog/README.md b/Examples/MAX32650/Watchdog/README.md
index e6207bff8c..94371d54a9 100644
--- a/Examples/MAX32650/Watchdog/README.md
+++ b/Examples/MAX32650/Watchdog/README.md
@@ -12,7 +12,7 @@ When the application begins, it initializes and starts the watchdog timer. The
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32650/Watchdog/project.mk b/Examples/MAX32650/Watchdog/project.mk
index ded3b0c6e5..a7f185557d 100644
--- a/Examples/MAX32650/Watchdog/project.mk
+++ b/Examples/MAX32650/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32650/WearLeveling/.vscode/README.md b/Examples/MAX32650/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32650/WearLeveling/.vscode/README.md
+++ b/Examples/MAX32650/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32650/WearLeveling/.vscode/settings.json b/Examples/MAX32650/WearLeveling/.vscode/settings.json
index 41ecee1b58..dd84c48da6 100755
--- a/Examples/MAX32650/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX32650/WearLeveling/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32650/WearLeveling/Makefile b/Examples/MAX32650/WearLeveling/Makefile
index 35688a2d72..03e86f19f9 100644
--- a/Examples/MAX32650/WearLeveling/Makefile
+++ b/Examples/MAX32650/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32650/WearLeveling/README.md b/Examples/MAX32650/WearLeveling/README.md
index 8f766e354d..e3abf060d3 100644
--- a/Examples/MAX32650/WearLeveling/README.md
+++ b/Examples/MAX32650/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32650EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32650EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32650/WearLeveling/project.mk b/Examples/MAX32650/WearLeveling/project.mk
index a858cca7f5..a64684758d 100644
--- a/Examples/MAX32650/WearLeveling/project.mk
+++ b/Examples/MAX32650/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32655/ADC/.vscode/README.md b/Examples/MAX32655/ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ADC/.vscode/README.md
+++ b/Examples/MAX32655/ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ADC/.vscode/settings.json b/Examples/MAX32655/ADC/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/ADC/.vscode/settings.json
+++ b/Examples/MAX32655/ADC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ADC/Makefile b/Examples/MAX32655/ADC/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/ADC/Makefile
+++ b/Examples/MAX32655/ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ADC/README.md b/Examples/MAX32655/ADC/README.md
index 1d11bee4d2..0e708c991e 100644
--- a/Examples/MAX32655/ADC/README.md
+++ b/Examples/MAX32655/ADC/README.md
@@ -11,11 +11,11 @@ Any reading that exceeds the full-scale value of the ADC will have an '*' append
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/ADC/project.mk b/Examples/MAX32655/ADC/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/ADC/project.mk
+++ b/Examples/MAX32655/ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/AES/.vscode/README.md b/Examples/MAX32655/AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/AES/.vscode/README.md
+++ b/Examples/MAX32655/AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/AES/.vscode/settings.json b/Examples/MAX32655/AES/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/AES/.vscode/settings.json
+++ b/Examples/MAX32655/AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/AES/Makefile b/Examples/MAX32655/AES/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/AES/Makefile
+++ b/Examples/MAX32655/AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/AES/README.md b/Examples/MAX32655/AES/README.md
index 925be036ed..918d71cbbb 100644
--- a/Examples/MAX32655/AES/README.md
+++ b/Examples/MAX32655/AES/README.md
@@ -8,11 +8,11 @@ This application demonstrates both encryption and decryption using AES. A block
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/AES/project.mk b/Examples/MAX32655/AES/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/AES/project.mk
+++ b/Examples/MAX32655/AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/ARM-DSP/README.md b/Examples/MAX32655/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32655/ARM-DSP/README.md
+++ b/Examples/MAX32655/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_bayes_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_bayes_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_convolution_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_convolution_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_fir_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_fir_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_matrix_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_matrix_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_svm_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_svm_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/settings.json
index 818fe5ab91..d900322b05 100755
--- a/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32655/ARM-DSP/arm_variance_example/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32655/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX32655/ARM-DSP/arm_variance_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32655/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX32655/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/settings.json
index 009129d8e8..0f708142b1 100755
--- a/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Bluetooth/BLE4_ctr/Makefile b/Examples/MAX32655/Bluetooth/BLE4_ctr/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE4_ctr/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE4_ctr/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE4_ctr/README.md b/Examples/MAX32655/Bluetooth/BLE4_ctr/README.md
index f2f51a79d8..bc974890b0 100644
--- a/Examples/MAX32655/Bluetooth/BLE4_ctr/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE4_ctr/README.md
@@ -8,7 +8,7 @@ Refer to the [BLE4_ctr](../../../Libraries/Cordio/docs/Applications/BLE4_ctr.md)
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32655/Bluetooth/BLE4_ctr/project.mk b/Examples/MAX32655/Bluetooth/BLE4_ctr/project.mk
index 7d15fc8196..2d0357ad74 100644
--- a/Examples/MAX32655/Bluetooth/BLE4_ctr/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE4_ctr/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/settings.json
index 009129d8e8..0f708142b1 100755
--- a/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Bluetooth/BLE5_ctr/Makefile b/Examples/MAX32655/Bluetooth/BLE5_ctr/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE5_ctr/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE5_ctr/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE5_ctr/README.md b/Examples/MAX32655/Bluetooth/BLE5_ctr/README.md
index aced5a086c..191671182f 100644
--- a/Examples/MAX32655/Bluetooth/BLE5_ctr/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE5_ctr/README.md
@@ -8,7 +8,7 @@ Refer to the [BLE5_ctr](../../../Libraries/Cordio/docs/Applications/BLE5_ctr.md)
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
- Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32655/Bluetooth/BLE5_ctr/project.mk b/Examples/MAX32655/Bluetooth/BLE5_ctr/project.mk
index 5758eb8b35..8ff74bc7c7 100644
--- a/Examples/MAX32655/Bluetooth/BLE5_ctr/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE5_ctr/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/settings.json
index cf08370b2d..5eb0c7e6c5 100755
--- a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -66,7 +67,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/hci/exactle",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include/util",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -80,6 +80,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -95,7 +96,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/platform/targets/maxim/max32655/sources",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/Makefile b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/README.md b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/README.md
index 49dfa90e34..0d746bf523 100644
--- a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/README.md
@@ -7,7 +7,7 @@ Refer to the [BLE_FreeRTOS](../../../Libraries/Cordio/docs/Applications/BLE_Free
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/project.mk b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/project.mk
index 4fb3b8fd29..44617a9a77 100644
--- a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/settings.json
index 009129d8e8..0f708142b1 100755
--- a/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Bluetooth/BLE_datc/Makefile b/Examples/MAX32655/Bluetooth/BLE_datc/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE_datc/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE_datc/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE_datc/README.md b/Examples/MAX32655/Bluetooth/BLE_datc/README.md
index 5f94ffd77c..0cc9e58268 100644
--- a/Examples/MAX32655/Bluetooth/BLE_datc/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_datc/README.md
@@ -6,7 +6,7 @@ Refer to the [BLE_datc_dats](../../../Libraries/Cordio/docs/Applications/BLE_dat
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32655/Bluetooth/BLE_datc/project.mk b/Examples/MAX32655/Bluetooth/BLE_datc/project.mk
index 4969ea8583..64f019d693 100644
--- a/Examples/MAX32655/Bluetooth/BLE_datc/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE_datc/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/settings.json
index 009129d8e8..0f708142b1 100755
--- a/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Bluetooth/BLE_dats/Makefile b/Examples/MAX32655/Bluetooth/BLE_dats/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE_dats/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE_dats/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE_dats/README.md b/Examples/MAX32655/Bluetooth/BLE_dats/README.md
index b1a0fc53b9..a009eba192 100644
--- a/Examples/MAX32655/Bluetooth/BLE_dats/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_dats/README.md
@@ -6,7 +6,7 @@ Refer to the [BLE_datc_dats](../../../Libraries/Cordio/docs/Applications/BLE_dat
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32655/Bluetooth/BLE_dats/project.mk b/Examples/MAX32655/Bluetooth/BLE_dats/project.mk
index ae24bfe619..b29e241ed7 100644
--- a/Examples/MAX32655/Bluetooth/BLE_dats/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE_dats/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/settings.json
index 009129d8e8..0f708142b1 100755
--- a/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Bluetooth/BLE_fcc/Makefile b/Examples/MAX32655/Bluetooth/BLE_fcc/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE_fcc/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE_fcc/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE_fcc/README.md b/Examples/MAX32655/Bluetooth/BLE_fcc/README.md
index dba4d7ea90..54a01b9791 100644
--- a/Examples/MAX32655/Bluetooth/BLE_fcc/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_fcc/README.md
@@ -7,7 +7,7 @@ Refer to [BLE_fcc](../../../Libraries/Cordio/docs/Applications/BLE_fcc.md) docum
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
## Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32655/Bluetooth/BLE_fcc/project.mk b/Examples/MAX32655/Bluetooth/BLE_fcc/project.mk
index b7b22cd865..256a1a1131 100644
--- a/Examples/MAX32655/Bluetooth/BLE_fcc/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE_fcc/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/settings.json
index 009129d8e8..0f708142b1 100755
--- a/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Bluetooth/BLE_fit/Makefile b/Examples/MAX32655/Bluetooth/BLE_fit/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE_fit/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE_fit/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE_fit/README.md b/Examples/MAX32655/Bluetooth/BLE_fit/README.md
index 264385f617..16ba538ddb 100644
--- a/Examples/MAX32655/Bluetooth/BLE_fit/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_fit/README.md
@@ -6,7 +6,7 @@ Refer to [BLE_fit](../../../Libraries/Cordio/docs/Applications/BLE_fit.md) docum
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32655/Bluetooth/BLE_fit/project.mk b/Examples/MAX32655/Bluetooth/BLE_fit/project.mk
index 5d6347c6be..4a88645be8 100644
--- a/Examples/MAX32655/Bluetooth/BLE_fit/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE_fit/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/settings.json
index cf08370b2d..5eb0c7e6c5 100755
--- a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -66,7 +67,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/hci/exactle",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include/util",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -80,6 +80,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -95,7 +96,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/platform/targets/maxim/max32655/sources",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/Makefile b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/README.md b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/README.md
index 9dc1b2f6d0..69fe17e2e8 100644
--- a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/README.md
@@ -35,9 +35,9 @@ In the project.mk, changing USE_DUAL_CORE to 1 will enable using both ARM core a
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
diff --git a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/project.mk b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/project.mk
index 4fb3b8fd29..44617a9a77 100644
--- a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/settings.json
index 009129d8e8..0f708142b1 100755
--- a/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Bluetooth/BLE_mcs/Makefile b/Examples/MAX32655/Bluetooth/BLE_mcs/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE_mcs/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE_mcs/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE_mcs/README.md b/Examples/MAX32655/Bluetooth/BLE_mcs/README.md
index a693404310..da73f1056a 100644
--- a/Examples/MAX32655/Bluetooth/BLE_mcs/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_mcs/README.md
@@ -8,7 +8,7 @@ Refer to the [BLE_mcs](../../../Libraries/Cordio/docs/Applications/BLE_mcs.md) d
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32655/Bluetooth/BLE_mcs/project.mk b/Examples/MAX32655/Bluetooth/BLE_mcs/project.mk
index 19a246f646..5be585019d 100644
--- a/Examples/MAX32655/Bluetooth/BLE_mcs/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE_mcs/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/settings.json
index 009129d8e8..0f708142b1 100755
--- a/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Bluetooth/BLE_otac/Makefile b/Examples/MAX32655/Bluetooth/BLE_otac/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE_otac/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE_otac/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE_otac/README.md b/Examples/MAX32655/Bluetooth/BLE_otac/README.md
index 40582c28fc..06a0de9f5e 100644
--- a/Examples/MAX32655/Bluetooth/BLE_otac/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_otac/README.md
@@ -11,7 +11,7 @@ Refer to the [BLE_otac_otas](../../../Libraries/Cordio/docs/Applications/BLE_ota
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32655/Bluetooth/BLE_otac/project.mk b/Examples/MAX32655/Bluetooth/BLE_otac/project.mk
index 480fca3c9b..4dc2cedd01 100644
--- a/Examples/MAX32655/Bluetooth/BLE_otac/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE_otac/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/settings.json
index aba700372e..5a98cb6a7e 100755
--- a/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -66,7 +67,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/hci/exactle",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include/util",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -77,6 +77,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -92,7 +93,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/platform/targets/maxim/max32655/sources",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/Bluetooth/BLE_otas/Makefile b/Examples/MAX32655/Bluetooth/BLE_otas/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE_otas/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE_otas/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE_otas/README.md b/Examples/MAX32655/Bluetooth/BLE_otas/README.md
index 1167202c17..299669aa7f 100644
--- a/Examples/MAX32655/Bluetooth/BLE_otas/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_otas/README.md
@@ -11,7 +11,7 @@ Refer to the [BLE_otac_otas](../../../Libraries/Cordio/docs/Applications/BLE_ota
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
## Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32655/Bluetooth/BLE_otas/project.mk b/Examples/MAX32655/Bluetooth/BLE_otas/project.mk
index 06b46b0fad..931e65f0d2 100644
--- a/Examples/MAX32655/Bluetooth/BLE_otas/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE_otas/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/settings.json b/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/settings.json
index 009129d8e8..0f708142b1 100755
--- a/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Bluetooth/BLE_periph/Makefile b/Examples/MAX32655/Bluetooth/BLE_periph/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/BLE_periph/Makefile
+++ b/Examples/MAX32655/Bluetooth/BLE_periph/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/BLE_periph/README.md b/Examples/MAX32655/Bluetooth/BLE_periph/README.md
index f825b4d0c1..ceca4c7905 100644
--- a/Examples/MAX32655/Bluetooth/BLE_periph/README.md
+++ b/Examples/MAX32655/Bluetooth/BLE_periph/README.md
@@ -5,7 +5,7 @@ Refer to the [BLE_periph](../../../Libraries/Cordio/docs/Applications/BLE_periph
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector. An anteanna or wired connection can be used if SMA is available on the board.
diff --git a/Examples/MAX32655/Bluetooth/BLE_periph/project.mk b/Examples/MAX32655/Bluetooth/BLE_periph/project.mk
index cfb8bc3278..03ad7a7f7d 100644
--- a/Examples/MAX32655/Bluetooth/BLE_periph/project.mk
+++ b/Examples/MAX32655/Bluetooth/BLE_periph/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/Bootloader/.vscode/README.md b/Examples/MAX32655/Bluetooth/Bootloader/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/Bootloader/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/Bootloader/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/Bootloader/.vscode/settings.json b/Examples/MAX32655/Bluetooth/Bootloader/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/Bluetooth/Bootloader/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/Bootloader/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/Bluetooth/Bootloader/Makefile b/Examples/MAX32655/Bluetooth/Bootloader/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/Bootloader/Makefile
+++ b/Examples/MAX32655/Bluetooth/Bootloader/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/Bootloader/README.md b/Examples/MAX32655/Bluetooth/Bootloader/README.md
index c08ee784ee..83b961032f 100644
--- a/Examples/MAX32655/Bluetooth/Bootloader/README.md
+++ b/Examples/MAX32655/Bluetooth/Bootloader/README.md
@@ -35,9 +35,9 @@ The red LED will blink in the error case.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
diff --git a/Examples/MAX32655/Bluetooth/Bootloader/project.mk b/Examples/MAX32655/Bluetooth/Bootloader/project.mk
index e92d7fb638..55de24ca92 100644
--- a/Examples/MAX32655/Bluetooth/Bootloader/project.mk
+++ b/Examples/MAX32655/Bluetooth/Bootloader/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Bluetooth/RF_Test/.cproject b/Examples/MAX32655/Bluetooth/RF_Test/.cproject
index ca9c4f4f3c..4772a3777b 100644
--- a/Examples/MAX32655/Bluetooth/RF_Test/.cproject
+++ b/Examples/MAX32655/Bluetooth/RF_Test/.cproject
@@ -32,7 +32,21 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Examples/MAX32655/Bluetooth/RF_Test/.vscode/README.md b/Examples/MAX32655/Bluetooth/RF_Test/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Bluetooth/RF_Test/.vscode/README.md
+++ b/Examples/MAX32655/Bluetooth/RF_Test/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Bluetooth/RF_Test/.vscode/settings.json b/Examples/MAX32655/Bluetooth/RF_Test/.vscode/settings.json
index daacadfb72..30c5159206 100755
--- a/Examples/MAX32655/Bluetooth/RF_Test/.vscode/settings.json
+++ b/Examples/MAX32655/Bluetooth/RF_Test/.vscode/settings.json
@@ -48,12 +48,26 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
+ "${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-host/include",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/stack/cfg",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-mesh-apps/include",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-mesh-model/include",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-mesh-profile/include",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-profiles/include",
+ "${config:MAXIM_PATH}/Libraries/Cordio/controller/include/ble",
+ "${config:MAXIM_PATH}/Libraries/Cordio/controller/include/common",
+ "${config:MAXIM_PATH}/Libraries/Cordio/platform/include",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/hci/dual_chip",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/hci/exactle",
+ "${config:MAXIM_PATH}/Libraries/Cordio/wsf/include",
+ "${config:MAXIM_PATH}/Libraries/Cordio/wsf/include/util",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -67,13 +81,23 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
+ "${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-apps/sources",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-mesh-apps/sources",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-mesh-model/sources",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-mesh-profile/sources",
+ "${config:MAXIM_PATH}/Libraries/Cordio/ble-profiles/sources",
+ "${config:MAXIM_PATH}/Libraries/Cordio/controller/sources",
+ "${config:MAXIM_PATH}/Libraries/Cordio/wsf/sources",
+ "${config:MAXIM_PATH}/Libraries/Cordio/platform/targets/maxim/max32655/sources",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32655/Bluetooth/RF_Test/Makefile b/Examples/MAX32655/Bluetooth/RF_Test/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Bluetooth/RF_Test/Makefile
+++ b/Examples/MAX32655/Bluetooth/RF_Test/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Bluetooth/RF_Test/README.md b/Examples/MAX32655/Bluetooth/RF_Test/README.md
index 2cf563ad1b..ef048bed0e 100644
--- a/Examples/MAX32655/Bluetooth/RF_Test/README.md
+++ b/Examples/MAX32655/Bluetooth/RF_Test/README.md
@@ -7,11 +7,11 @@ Simple serial port console for FCC testing.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
# Usage
diff --git a/Examples/MAX32655/Bluetooth/RF_Test/project.mk b/Examples/MAX32655/Bluetooth/RF_Test/project.mk
index 7306ea2c1f..f3913aed27 100644
--- a/Examples/MAX32655/Bluetooth/RF_Test/project.mk
+++ b/Examples/MAX32655/Bluetooth/RF_Test/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/CRC/.vscode/README.md b/Examples/MAX32655/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/CRC/.vscode/README.md
+++ b/Examples/MAX32655/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/CRC/.vscode/settings.json b/Examples/MAX32655/CRC/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/CRC/.vscode/settings.json
+++ b/Examples/MAX32655/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/CRC/Makefile b/Examples/MAX32655/CRC/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/CRC/Makefile
+++ b/Examples/MAX32655/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/CRC/README.md b/Examples/MAX32655/CRC/README.md
index 136ae9fb90..8f29275e1d 100644
--- a/Examples/MAX32655/CRC/README.md
+++ b/Examples/MAX32655/CRC/README.md
@@ -7,11 +7,11 @@ This example demonstrates the use of the HW CRC calculator. The example first g
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/CRC/project.mk b/Examples/MAX32655/CRC/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/CRC/project.mk
+++ b/Examples/MAX32655/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Coremark/.vscode/README.md b/Examples/MAX32655/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Coremark/.vscode/README.md
+++ b/Examples/MAX32655/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Coremark/.vscode/settings.json b/Examples/MAX32655/Coremark/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/Coremark/.vscode/settings.json
+++ b/Examples/MAX32655/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Coremark/Makefile b/Examples/MAX32655/Coremark/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/Coremark/Makefile
+++ b/Examples/MAX32655/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Coremark/README.md b/Examples/MAX32655/Coremark/README.md
index 3601cdaea8..95361e36d3 100644
--- a/Examples/MAX32655/Coremark/README.md
+++ b/Examples/MAX32655/Coremark/README.md
@@ -10,13 +10,13 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
* To comply with the CoreMark rules, the only source files which are included in this example directory are the core_portme.c/.h files, the rest (including main) are located in the [Coremark](../../../Libraries/Coremark/) library.
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/Coremark/project.mk b/Examples/MAX32655/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32655/Coremark/project.mk
+++ b/Examples/MAX32655/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/DMA/.vscode/README.md b/Examples/MAX32655/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/DMA/.vscode/README.md
+++ b/Examples/MAX32655/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/DMA/.vscode/settings.json b/Examples/MAX32655/DMA/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/DMA/.vscode/settings.json
+++ b/Examples/MAX32655/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/DMA/Makefile b/Examples/MAX32655/DMA/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/DMA/Makefile
+++ b/Examples/MAX32655/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/DMA/README.md b/Examples/MAX32655/DMA/README.md
index 931cd7d468..453f3b8c4a 100644
--- a/Examples/MAX32655/DMA/README.md
+++ b/Examples/MAX32655/DMA/README.md
@@ -9,11 +9,11 @@ A second more complex DMA transaction is then shown that chains two memory-to-me
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/DMA/project.mk b/Examples/MAX32655/DMA/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/DMA/project.mk
+++ b/Examples/MAX32655/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/README.md b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/README.md
+++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/settings.json b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/settings.json
+++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/Makefile b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/Makefile
+++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/README.md b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/README.md
index 019db7b396..d2f479015c 100644
--- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/README.md
+++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/README.md
@@ -13,11 +13,11 @@ Please refer to the App Note [The MAX32655: Why Two Cores Are Better Than One](h
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/project.mk b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/project.mk
index fde7f518b3..3413acecf9 100644
--- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/project.mk
+++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/README.md b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/README.md
+++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/settings.json b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/settings.json
+++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/Makefile b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/Makefile
index e4db53a1c0..f2bed64b86 100644
--- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/Makefile
+++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/README.md b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/README.md
index 163b63179c..29e56e11ef 100644
--- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/README.md
+++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/README.md
@@ -11,11 +11,11 @@ README file of project MAX32655/Dual_core_sync_arm will present more details on
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the Standard EV Kit (EvKit\_V1):
diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/project.mk b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/project.mk
index 180d1fa0c3..55ef221811 100644
--- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/project.mk
+++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32655/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32655/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32655/EEPROM_Emulator/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32655/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/EEPROM_Emulator/Makefile b/Examples/MAX32655/EEPROM_Emulator/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32655/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/EEPROM_Emulator/README.md b/Examples/MAX32655/EEPROM_Emulator/README.md
index ec46a26f1d..4b792e8807 100644
--- a/Examples/MAX32655/EEPROM_Emulator/README.md
+++ b/Examples/MAX32655/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32655 to emulate a 32KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -48,11 +48,11 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/EEPROM_Emulator/project.mk b/Examples/MAX32655/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32655/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/External_Flash/.vscode/README.md b/Examples/MAX32655/External_Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/External_Flash/.vscode/README.md
+++ b/Examples/MAX32655/External_Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/External_Flash/.vscode/settings.json b/Examples/MAX32655/External_Flash/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/External_Flash/.vscode/settings.json
+++ b/Examples/MAX32655/External_Flash/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/External_Flash/Makefile b/Examples/MAX32655/External_Flash/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/External_Flash/Makefile
+++ b/Examples/MAX32655/External_Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/External_Flash/README.md b/Examples/MAX32655/External_Flash/README.md
index 77e890470e..ce72a975da 100644
--- a/Examples/MAX32655/External_Flash/README.md
+++ b/Examples/MAX32655/External_Flash/README.md
@@ -10,7 +10,7 @@ The user may select between Quad and Single SPI interface modes by setting the v
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/External_Flash/project.mk b/Examples/MAX32655/External_Flash/project.mk
index 84a00ef404..15632b4955 100644
--- a/Examples/MAX32655/External_Flash/project.mk
+++ b/Examples/MAX32655/External_Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
@@ -11,5 +11,5 @@
# This example is only compatible with the MAX32655EVKIT
ifneq ($(BOARD),EvKit_V1)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages))
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages))
endif
diff --git a/Examples/MAX32655/FTHR_I2C/.vscode/README.md b/Examples/MAX32655/FTHR_I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/FTHR_I2C/.vscode/README.md
+++ b/Examples/MAX32655/FTHR_I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/FTHR_I2C/.vscode/settings.json b/Examples/MAX32655/FTHR_I2C/.vscode/settings.json
index 561d41c368..092b999f11 100755
--- a/Examples/MAX32655/FTHR_I2C/.vscode/settings.json
+++ b/Examples/MAX32655/FTHR_I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/FTHR_I2C/Makefile b/Examples/MAX32655/FTHR_I2C/Makefile
index a7f4836e40..b0bc6723f0 100644
--- a/Examples/MAX32655/FTHR_I2C/Makefile
+++ b/Examples/MAX32655/FTHR_I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/FTHR_I2C/README.md b/Examples/MAX32655/FTHR_I2C/README.md
index a6125d6086..5d54728568 100644
--- a/Examples/MAX32655/FTHR_I2C/README.md
+++ b/Examples/MAX32655/FTHR_I2C/README.md
@@ -9,7 +9,7 @@ This example uses I2C to cycle through the 8 colors of the RGB LED connected to
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/FTHR_I2C/project.mk b/Examples/MAX32655/FTHR_I2C/project.mk
index 10531df107..1933724af0 100644
--- a/Examples/MAX32655/FTHR_I2C/project.mk
+++ b/Examples/MAX32655/FTHR_I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
@@ -12,5 +12,5 @@ override BOARD=FTHR_Apps_P1
# This example is only compatible with the MAX32655FTHR
ifneq ($(BOARD),FTHR_Apps_P1)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655FTHR. (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages))
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655FTHR. (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages))
endif
diff --git a/Examples/MAX32655/Flash/.vscode/README.md b/Examples/MAX32655/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Flash/.vscode/README.md
+++ b/Examples/MAX32655/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Flash/.vscode/settings.json b/Examples/MAX32655/Flash/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/Flash/.vscode/settings.json
+++ b/Examples/MAX32655/Flash/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/Flash/Makefile b/Examples/MAX32655/Flash/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/Flash/Makefile
+++ b/Examples/MAX32655/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Flash/README.md b/Examples/MAX32655/Flash/README.md
index 5405e52712..157d5a2c17 100644
--- a/Examples/MAX32655/Flash/README.md
+++ b/Examples/MAX32655/Flash/README.md
@@ -21,11 +21,11 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32655/Flash/project.mk b/Examples/MAX32655/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/Flash/project.mk
+++ b/Examples/MAX32655/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Flash_CLI/.vscode/README.md b/Examples/MAX32655/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32655/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Flash_CLI/.vscode/settings.json b/Examples/MAX32655/Flash_CLI/.vscode/settings.json
index f8b9c50f03..029f7fdf47 100755
--- a/Examples/MAX32655/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32655/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Flash_CLI/Makefile b/Examples/MAX32655/Flash_CLI/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/Flash_CLI/Makefile
+++ b/Examples/MAX32655/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Flash_CLI/README.md b/Examples/MAX32655/Flash_CLI/README.md
index 0de5258cc8..6fda725c0a 100644
--- a/Examples/MAX32655/Flash_CLI/README.md
+++ b/Examples/MAX32655/Flash_CLI/README.md
@@ -9,11 +9,11 @@ This example demonstates the CLI commands feature of FreeRTOS, various features
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/Flash_CLI/project.mk b/Examples/MAX32655/Flash_CLI/project.mk
index e8bfdd0d48..4f929ff2de 100644
--- a/Examples/MAX32655/Flash_CLI/project.mk
+++ b/Examples/MAX32655/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32655/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX32655/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX32655/FreeRTOSDemo/.vscode/settings.json
index 6b0b45a984..20aa129a0b 100755
--- a/Examples/MAX32655/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX32655/FreeRTOSDemo/.vscode/settings.json
@@ -48,13 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -68,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -75,7 +76,6 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32655/FreeRTOSDemo/Makefile b/Examples/MAX32655/FreeRTOSDemo/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/FreeRTOSDemo/Makefile
+++ b/Examples/MAX32655/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/FreeRTOSDemo/README.md b/Examples/MAX32655/FreeRTOSDemo/README.md
index 31295bfecc..708ed297ef 100644
--- a/Examples/MAX32655/FreeRTOSDemo/README.md
+++ b/Examples/MAX32655/FreeRTOSDemo/README.md
@@ -7,11 +7,11 @@ A basic getting started application for FreeRTOS.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/FreeRTOSDemo/project.mk b/Examples/MAX32655/FreeRTOSDemo/project.mk
index e8bfdd0d48..4f929ff2de 100644
--- a/Examples/MAX32655/FreeRTOSDemo/project.mk
+++ b/Examples/MAX32655/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/GPIO/.vscode/README.md b/Examples/MAX32655/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/GPIO/.vscode/README.md
+++ b/Examples/MAX32655/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/GPIO/.vscode/settings.json b/Examples/MAX32655/GPIO/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/GPIO/.vscode/settings.json
+++ b/Examples/MAX32655/GPIO/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/GPIO/Makefile b/Examples/MAX32655/GPIO/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/GPIO/Makefile
+++ b/Examples/MAX32655/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/GPIO/README.md b/Examples/MAX32655/GPIO/README.md
index 644e8ead3d..e53ee97645 100644
--- a/Examples/MAX32655/GPIO/README.md
+++ b/Examples/MAX32655/GPIO/README.md
@@ -21,11 +21,11 @@ On the Featherboard:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/GPIO/project.mk b/Examples/MAX32655/GPIO/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/GPIO/project.mk
+++ b/Examples/MAX32655/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Hello_World-riscv/.vscode/README.md b/Examples/MAX32655/Hello_World-riscv/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Hello_World-riscv/.vscode/README.md
+++ b/Examples/MAX32655/Hello_World-riscv/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Hello_World-riscv/.vscode/settings.json b/Examples/MAX32655/Hello_World-riscv/.vscode/settings.json
index 242a7c8a01..6561d2ca19 100755
--- a/Examples/MAX32655/Hello_World-riscv/.vscode/settings.json
+++ b/Examples/MAX32655/Hello_World-riscv/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Hello_World-riscv/README.md b/Examples/MAX32655/Hello_World-riscv/README.md
index bd26a3c87d..a881b52129 100644
--- a/Examples/MAX32655/Hello_World-riscv/README.md
+++ b/Examples/MAX32655/Hello_World-riscv/README.md
@@ -10,7 +10,7 @@ The ARM core initializes the RISC-V core before relinquishing control of executi
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/Hello_World/.vscode/README.md b/Examples/MAX32655/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Hello_World/.vscode/README.md
+++ b/Examples/MAX32655/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Hello_World/.vscode/settings.json b/Examples/MAX32655/Hello_World/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32655/Hello_World/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/Hello_World/Makefile b/Examples/MAX32655/Hello_World/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/Hello_World/Makefile
+++ b/Examples/MAX32655/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Hello_World/README.md b/Examples/MAX32655/Hello_World/README.md
index 1f8f28cd91..cdff97576e 100644
--- a/Examples/MAX32655/Hello_World/README.md
+++ b/Examples/MAX32655/Hello_World/README.md
@@ -9,11 +9,11 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/Hello_World/project.mk b/Examples/MAX32655/Hello_World/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/Hello_World/project.mk
+++ b/Examples/MAX32655/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32655/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32655/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32655/Hello_World_Cpp/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32655/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Hello_World_Cpp/Makefile b/Examples/MAX32655/Hello_World_Cpp/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32655/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Hello_World_Cpp/README.md b/Examples/MAX32655/Hello_World_Cpp/README.md
index 257b29363d..8f0e78361a 100644
--- a/Examples/MAX32655/Hello_World_Cpp/README.md
+++ b/Examples/MAX32655/Hello_World_Cpp/README.md
@@ -8,11 +8,11 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32655/Hello_World_Cpp/project.mk b/Examples/MAX32655/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32655/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32655/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32655/I2C/.vscode/README.md b/Examples/MAX32655/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/I2C/.vscode/README.md
+++ b/Examples/MAX32655/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/I2C/.vscode/settings.json b/Examples/MAX32655/I2C/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/I2C/.vscode/settings.json
+++ b/Examples/MAX32655/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/I2C/Makefile b/Examples/MAX32655/I2C/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/I2C/Makefile
+++ b/Examples/MAX32655/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/I2C/README.md b/Examples/MAX32655/I2C/README.md
index 0732ea4322..dec050fd3f 100644
--- a/Examples/MAX32655/I2C/README.md
+++ b/Examples/MAX32655/I2C/README.md
@@ -12,7 +12,7 @@ NOTE: This example is not supported by the MAX32655FTHR kit due to a lack of exp
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/I2C/project.mk b/Examples/MAX32655/I2C/project.mk
index 84a00ef404..15632b4955 100644
--- a/Examples/MAX32655/I2C/project.mk
+++ b/Examples/MAX32655/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
@@ -11,5 +11,5 @@
# This example is only compatible with the MAX32655EVKIT
ifneq ($(BOARD),EvKit_V1)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages))
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages))
endif
diff --git a/Examples/MAX32655/I2C_EEPROM/.vscode/README.md b/Examples/MAX32655/I2C_EEPROM/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/I2C_EEPROM/.vscode/README.md
+++ b/Examples/MAX32655/I2C_EEPROM/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/I2C_EEPROM/.vscode/settings.json b/Examples/MAX32655/I2C_EEPROM/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/I2C_EEPROM/.vscode/settings.json
+++ b/Examples/MAX32655/I2C_EEPROM/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/I2C_EEPROM/Makefile b/Examples/MAX32655/I2C_EEPROM/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/I2C_EEPROM/Makefile
+++ b/Examples/MAX32655/I2C_EEPROM/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/I2C_EEPROM/README.md b/Examples/MAX32655/I2C_EEPROM/README.md
index 3a96099d4b..69efe7cedd 100644
--- a/Examples/MAX32655/I2C_EEPROM/README.md
+++ b/Examples/MAX32655/I2C_EEPROM/README.md
@@ -8,11 +8,11 @@ One 24LC256 EEPROM is required to implement this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32655/I2C_EEPROM/project.mk b/Examples/MAX32655/I2C_EEPROM/project.mk
index 334e3cd821..c37c63a329 100644
--- a/Examples/MAX32655/I2C_EEPROM/project.mk
+++ b/Examples/MAX32655/I2C_EEPROM/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/I2C_MNGR/.vscode/README.md b/Examples/MAX32655/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32655/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/I2C_MNGR/.vscode/settings.json b/Examples/MAX32655/I2C_MNGR/.vscode/settings.json
index daacadfb72..8ca186f910 100755
--- a/Examples/MAX32655/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32655/I2C_MNGR/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32655/I2C_MNGR/Makefile b/Examples/MAX32655/I2C_MNGR/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/I2C_MNGR/Makefile
+++ b/Examples/MAX32655/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/I2C_MNGR/README.md b/Examples/MAX32655/I2C_MNGR/README.md
index 6282a90791..48d17c5302 100644
--- a/Examples/MAX32655/I2C_MNGR/README.md
+++ b/Examples/MAX32655/I2C_MNGR/README.md
@@ -12,7 +12,7 @@ NOTE: This example is not supported by the MAX32655FTHR.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/I2C_MNGR/project.mk b/Examples/MAX32655/I2C_MNGR/project.mk
index 9368daff8b..27bedd89ca 100644
--- a/Examples/MAX32655/I2C_MNGR/project.mk
+++ b/Examples/MAX32655/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
@@ -11,7 +11,7 @@
# This example is only compatible with the MAX32655EVKIT
ifneq ($(BOARD),EvKit_V1)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages))
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages))
endif
# Build the FreeRTOS Library
diff --git a/Examples/MAX32655/I2C_SCAN/.vscode/README.md b/Examples/MAX32655/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32655/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/I2C_SCAN/.vscode/settings.json b/Examples/MAX32655/I2C_SCAN/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32655/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/I2C_SCAN/Makefile b/Examples/MAX32655/I2C_SCAN/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/I2C_SCAN/Makefile
+++ b/Examples/MAX32655/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/I2C_SCAN/README.md b/Examples/MAX32655/I2C_SCAN/README.md
index 23761413a5..b99d836771 100644
--- a/Examples/MAX32655/I2C_SCAN/README.md
+++ b/Examples/MAX32655/I2C_SCAN/README.md
@@ -8,11 +8,11 @@ Please check schematic diagram to get more information about the discovered devi
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/I2C_SCAN/project.mk b/Examples/MAX32655/I2C_SCAN/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/I2C_SCAN/project.mk
+++ b/Examples/MAX32655/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/I2C_Sensor/.vscode/README.md b/Examples/MAX32655/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32655/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/I2C_Sensor/.vscode/settings.json b/Examples/MAX32655/I2C_Sensor/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32655/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/I2C_Sensor/Makefile b/Examples/MAX32655/I2C_Sensor/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/I2C_Sensor/Makefile
+++ b/Examples/MAX32655/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/I2C_Sensor/README.md b/Examples/MAX32655/I2C_Sensor/README.md
index 93c6c5424e..f35c857c5f 100644
--- a/Examples/MAX32655/I2C_Sensor/README.md
+++ b/Examples/MAX32655/I2C_Sensor/README.md
@@ -10,7 +10,7 @@ NOTE: This example is only supported on the MAX32655EVKIT.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/I2C_Sensor/project.mk b/Examples/MAX32655/I2C_Sensor/project.mk
index 8a7d81bf78..a6cddf8c37 100644
--- a/Examples/MAX32655/I2C_Sensor/project.mk
+++ b/Examples/MAX32655/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
@@ -11,7 +11,7 @@
# This example is only compatible with the MAX32655EVKIT
ifneq ($(BOARD),EvKit_V1)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages))
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages))
endif
# Include temperature sensor driver
diff --git a/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/README.md b/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/README.md
+++ b/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/settings.json b/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/settings.json
+++ b/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/I2C_Sensor_ADT7420/Makefile b/Examples/MAX32655/I2C_Sensor_ADT7420/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/I2C_Sensor_ADT7420/Makefile
+++ b/Examples/MAX32655/I2C_Sensor_ADT7420/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/I2C_Sensor_ADT7420/README.md b/Examples/MAX32655/I2C_Sensor_ADT7420/README.md
index cb2945608f..710d696e62 100644
--- a/Examples/MAX32655/I2C_Sensor_ADT7420/README.md
+++ b/Examples/MAX32655/I2C_Sensor_ADT7420/README.md
@@ -10,7 +10,7 @@ NOTE: This example is only supported on the MAX32655EVKIT.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/I2C_Sensor_ADT7420/project.mk b/Examples/MAX32655/I2C_Sensor_ADT7420/project.mk
index 131a6cec04..e1e0addd78 100644
--- a/Examples/MAX32655/I2C_Sensor_ADT7420/project.mk
+++ b/Examples/MAX32655/I2C_Sensor_ADT7420/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
@@ -11,7 +11,7 @@
# This example is only compatible with the MAX32655EVKIT
ifneq ($(BOARD),EvKit_V1)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages))
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages))
endif
# Include temperature sensor driver
diff --git a/Examples/MAX32655/I2S/.cproject b/Examples/MAX32655/I2S/.cproject
index cc27e5c4c3..1ee88bbb49 100644
--- a/Examples/MAX32655/I2S/.cproject
+++ b/Examples/MAX32655/I2S/.cproject
@@ -32,7 +32,16 @@
-
+
+
+
+
+
+
+
+
+
+
diff --git a/Examples/MAX32655/I2S/.vscode/README.md b/Examples/MAX32655/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/I2S/.vscode/README.md
+++ b/Examples/MAX32655/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/I2S/.vscode/settings.json b/Examples/MAX32655/I2S/.vscode/settings.json
index 9cca2e3614..0871386336 100755
--- a/Examples/MAX32655/I2S/.vscode/settings.json
+++ b/Examples/MAX32655/I2S/.vscode/settings.json
@@ -48,11 +48,14 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen"
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
"C_Cpp.default.browse.path": [
"${workspaceFolder}",
@@ -61,11 +64,15 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers"
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
"C_Cpp.default.defines": [
diff --git a/Examples/MAX32655/I2S/ARM/Abstract.txt b/Examples/MAX32655/I2S/ARM/Abstract.txt
deleted file mode 100644
index 8321538391..0000000000
--- a/Examples/MAX32655/I2S/ARM/Abstract.txt
+++ /dev/null
@@ -1 +0,0 @@
-I2S Example!
\ No newline at end of file
diff --git a/Examples/MAX32655/I2S/ARM/EventRecorderStub.scvd b/Examples/MAX32655/I2S/ARM/EventRecorderStub.scvd
deleted file mode 100644
index 2956b29683..0000000000
--- a/Examples/MAX32655/I2S/ARM/EventRecorderStub.scvd
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/Examples/MAX32655/I2S/ARM/I2S.sct b/Examples/MAX32655/I2S/ARM/I2S.sct
deleted file mode 100644
index 3ce91f6440..0000000000
--- a/Examples/MAX32655/I2S/ARM/I2S.sct
+++ /dev/null
@@ -1,24 +0,0 @@
-#! armcc -E -I .\..\
-
-#include "sct_config.h"
-
-; *************************************************************
-; *** Scatter-Loading Description File generated by uVision ***
-; *************************************************************
-
-LR_IROM1 0x10000000 0x00080000 { ; load region size_region
- ER_IROM1 0x10000000 0x00080000 { ; load address = execution address
- *.o (RESET, +First)
- *(InRoot$$Sections)
- .ANY (+RO)
- .ANY (+XO)
- }
-
-// ADDER _BIN_START_ {
-// all_imgs.o (.bin_storage_img)
-// }
-
- RW_IRAM1 0x20000000 0x00020000 { ; RW data
- .ANY (+RW +ZI)
- }
-}
\ No newline at end of file
diff --git a/Examples/MAX32655/I2S/ARM/I2S.uvoptx b/Examples/MAX32655/I2S/ARM/I2S.uvoptx
deleted file mode 100644
index 3159e355a9..0000000000
--- a/Examples/MAX32655/I2S/ARM/I2S.uvoptx
+++ /dev/null
@@ -1,260 +0,0 @@
-
-
-
- 1.0
-
- ### uVision Project, (C) Keil Software
-
-
- *.c
- *.s*; *.src; *.a*
- *.obj; *.o
- *.lib
- *.txt; *.h; *.inc; *.md
- *.plm
- *.cpp
- 0
-
-
-
- 0
- 0
-
-
-
- Flash Debug
- 0x4
- ARM-ADS
-
- 96000000
-
- 1
- 1
- 0
- 1
- 0
-
-
- 1
- 65535
- 0
- 0
- 0
-
-
- 79
- 66
- 8
- .\Listings\
-
-
- 1
- 1
- 1
- 0
- 1
- 1
- 0
- 1
- 0
- 0
- 0
- 0
-
-
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 0
- 0
-
-
- 1
- 0
- 1
-
- 255
-
- 0
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 1
- 0
- 0
- 3
-
-
-
-
-
-
-
-
-
-
- BIN\CMSIS_AGDI.dll
-
-
-
- 0
- ARMRTXEVENTFLAGS
- -L70 -Z18 -C0 -M0 -T1
-
-
- 0
- DLGTARM
- (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)
-
-
- 0
- ARMDBGFLAGS
-
-
-
- 0
- DLGUARM
-
-
-
- 0
- CMSIS_AGDI
- -X"CMSIS-DAP v1" -U0409170241ffcce80000000000000000 -O999 -S10 -C0 -P00000000 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO65554 -TC10000000 -TT10000000 -TP20 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO23 -FD20000000 -FC3000 -FN1 -FF0MAX32655.FLM -FS010000000 -FL05FFFF -FP0($$Device:MAX32655$Flash\MAX32655.FLM)
-
-
- 0
- UL2CM3
- UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000)
-
-
-
-
- 0
-
-
- 0
- 1
- 1
- 0
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
- 0
- 0
- 0
-
-
-
-
-
-
-
-
-
- 0
- 1
- 0
- 2
- 2000000
-
-
-
-
-
- Source
- 1
- 0
- 0
- 0
-
- 1
- 1
- 1
- 0
- 0
- 0
- ..\main.c
- main.c
- 0
- 0
-
-
- 1
- 2
- 5
- 0
- 0
- 0
- .\Abstract.txt
- Abstract.txt
- 0
- 0
-
-
-
-
- ::BSP
- 1
- 0
- 0
- 1
-
-
-
- ::CMSIS
- 0
- 0
- 0
- 1
-
-
-
- ::Device
- 1
- 0
- 0
- 1
-
-
-
diff --git a/Examples/MAX32655/I2S/ARM/I2S.uvprojx b/Examples/MAX32655/I2S/ARM/I2S.uvprojx
deleted file mode 100644
index 1b4043032c..0000000000
--- a/Examples/MAX32655/I2S/ARM/I2S.uvprojx
+++ /dev/null
@@ -1,554 +0,0 @@
-
-
-
- 2.1
-
- ### uVision Project, (C) Keil Software
-
-
-
- Flash Debug
- 0x4
- ARM-ADS
- 5060960::V5.06 update 7 (build 960)::.\ARMCC
- 0
-
-
- MAX32655:Cortex-M4
- Maxim
- Maxim.MAX32655.1.0.0
- http://www.mxim.net/microcontroller/pack/
- IRAM(0x20000000,0x00080000) IROM(0x10000000,0x00100000) CPUTYPE("Cortex-M4") FPU2 CLOCK(96000000) ELITTLE
-
-
- UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000)
- 0
- $$Device:MAX32655$Libraries\Device\Maxim\MAX32655\Include\max32655.h
-
-
-
-
-
-
-
-
-
- $$Device:MAX32655$SVD\MAX32655\max32655.svd
- 0
- 0
-
-
-
-
-
-
- 0
- 0
- 0
- 0
- 1
-
- .\Objects\
- I2S
- 1
- 0
- 1
- 1
- 1
- .\Listings\
- 1
- 0
- 0
-
- 0
- 0
-
-
- 0
- 0
- 0
- 0
-
-
- 0
- 0
-
-
- 0
- 0
- 0
- 0
-
-
- 0
- 0
-
-
- 0
- 0
- 0
- 0
-
- 0
-
-
-
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 3
-
-
- 1
-
-
- SARMCM3.DLL
-
- DCM.DLL
- -pCM4
- SARMCM3.DLL
-
- TCM.DLL
- -pCM4
-
-
-
- 1
- 0
- 0
- 0
- 16
-
-
-
-
- 1
- 0
- 0
- 1
- 1
- 4099
-
- 0
- BIN\CMSIS_AGDI.dll
- "" ()
-
-
-
-
- 0
-
-
-
- 0
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 0
- 1
- 1
- 0
- 1
- 1
- 0
- 0
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 1
- 0
- 0
- "Cortex-M4"
-
- 0
- 0
- 0
- 1
- 1
- 0
- 0
- 2
- 0
- 0
- 0
- 0
- 8
- 1
- 0
- 0
- 0
- 3
- 3
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 1
- 0
-
-
- 0
- 0x0
- 0x0
-
-
- 0
- 0x0
- 0x0
-
-
- 0
- 0x0
- 0x0
-
-
- 0
- 0x0
- 0x0
-
-
- 0
- 0x0
- 0x0
-
-
- 0
- 0x0
- 0x0
-
-
- 0
- 0x20000000
- 0x80000
-
-
- 1
- 0x10000000
- 0x100000
-
-
- 0
- 0x0
- 0x0
-
-
- 1
- 0x0
- 0x0
-
-
- 1
- 0x0
- 0x0
-
-
- 1
- 0x0
- 0x0
-
-
- 1
- 0x10000000
- 0x80000
-
-
- 1
- 0x0
- 0x0
-
-
- 0
- 0x0
- 0x0
-
-
- 0
- 0x0
- 0x0
-
-
- 0
- 0x0
- 0x0
-
-
- 0
- 0x20000000
- 0x20000
-
-
- 0
- 0x0
- 0x0
-
-
-
-
-
- 1
- 1
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 2
- 0
- 0
- 1
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- --diag_suppress 1295 --diag_suppress 111
- TARGET=32655 TARGET_REV=0x4131
-
- ..\..\I2S
-
-
-
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 4
-
-
-
-
-
-
-
-
- 0
- 0
- 0
- 0
- 1
- 0
- 0x10000000
- 0x20000000
-
- .\I2S.sct
-
-
-
-
-
-
-
-
-
-
- Source
-
-
- main.c
- 1
- ..\main.c
-
-
- Abstract.txt
- 5
- .\Abstract.txt
-
-
-
-
- ::BSP
-
-
- ::CMSIS
-
-
- ::Device
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RTE\Device\MAX32655\max32655.h
-
-
-
-
-
- RTE\Device\MAX32655\startup_max32655.s
-
-
-
-
-
- RTE\Device\MAX32655\sub_main.c
-
-
-
-
-
- RTE\Device\MAX32655\system_max32655.c
-
-
-
-
-
- RTE\Device\MAX32655_Cortex-M4\max32655.h
-
-
-
-
-
-
-
- RTE\Device\MAX32655_Cortex-M4\startup_max32655.s
-
-
-
-
-
-
-
- RTE\Device\MAX32655_Cortex-M4\system_max32655.c
-
-
-
-
-
-
-
-
-
-
diff --git a/Examples/MAX32655/I2S/ARM/JLinkSettings.ini b/Examples/MAX32655/I2S/ARM/JLinkSettings.ini
deleted file mode 100644
index ec06b64ccb..0000000000
--- a/Examples/MAX32655/I2S/ARM/JLinkSettings.ini
+++ /dev/null
@@ -1,39 +0,0 @@
-[BREAKPOINTS]
-ForceImpTypeAny = 0
-ShowInfoWin = 1
-EnableFlashBP = 2
-BPDuringExecution = 0
-[CFI]
-CFISize = 0x00
-CFIAddr = 0x00
-[CPU]
-MonModeVTableAddr = 0xFFFFFFFF
-MonModeDebug = 0
-MaxNumAPs = 0
-LowPowerHandlingMode = 0
-OverrideMemMap = 0
-AllowSimulation = 1
-ScriptFile=""
-[FLASH]
-CacheExcludeSize = 0x00
-CacheExcludeAddr = 0x00
-MinNumBytesFlashDL = 0
-SkipProgOnCRCMatch = 1
-VerifyDownload = 1
-AllowCaching = 1
-EnableFlashDL = 2
-Override = 0
-Device="Cortex-M4"
-[GENERAL]
-WorkRAMSize = 0x00
-WorkRAMAddr = 0x00
-RAMUsageLimit = 0x00
-[SWO]
-SWOLogFile=""
-[MEM]
-RdOverrideOrMask = 0x00
-RdOverrideAndMask = 0xFFFFFFFF
-RdOverrideAddr = 0xFFFFFFFF
-WrOverrideOrMask = 0x00
-WrOverrideAndMask = 0xFFFFFFFF
-WrOverrideAddr = 0xFFFFFFFF
diff --git a/Examples/MAX32655/I2S/IAR/I2S.dep b/Examples/MAX32655/I2S/IAR/I2S.dep
deleted file mode 100644
index f3a1f7e9ef..0000000000
--- a/Examples/MAX32655/I2S/IAR/I2S.dep
+++ /dev/null
@@ -1,576 +0,0 @@
-
-
- 5
- 517133268
-
- Debug
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\gcr_regs.h
- $TOOLKIT_DIR$\inc\c\DLib_Defaults.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\lpgcr_regs.h
- $TOOLKIT_DIR$\inc\c\DLib_Product.h
- $TOOLKIT_DIR$\inc\c\DLib_Product_string.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\UART\uart_common.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\ARM\CMSIS\5.5.1\CMSIS\Core\Include\cmsis_compiler.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\gpio.h
- $PROJ_DIR$\Debug\Exe\I2S.out
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\cmain.o.rsp
- $TOOLKIT_DIR$\inc\c\yvals.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\i2s_regs.h
- $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\dma.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\ARM\CMSIS\5.5.1\CMSIS\Core\Include\cmsis_iccarm.h
- $TOOLKIT_DIR$\inc\c\stdbool.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\gpio_regs.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\startup_max32655.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\ARM\CMSIS\5.5.1\CMSIS\Core\Include\core_cm4.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\I2S\i2s_reva.h
- $TOOLKIT_DIR$\inc\c\stddef.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\system_max32655.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\I2S\i2s_reva_regs.h
- $TOOLKIT_DIR$\inc\c\aarch32\iccarm_builtin.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\DMA\dma_reva.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\EvKit_V1\Include\board.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\ARM\CMSIS\5.5.1\CMSIS\Core\Include\cmsis_version.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\mxc_pins.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\uart_regs.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\dma_regs.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\icc_regs.h
- $TOOLKIT_DIR$\inc\c\errno.h
- $TOOLKIT_DIR$\inc\c\stdint.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\aes_key_regs.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\GPIO\gpio_reva.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\fcr_regs.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\cmain.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\mxc_lock.h
- $TOOLKIT_DIR$\inc\c\string.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\startup_max32655.o.rsp
- $TOOLKIT_DIR$\inc\c\ycheck.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\aes.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\ARM\CMSIS\5.5.1\CMSIS\Core\Include\mpu_armv7.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\mxc_device.h
- $TOOLKIT_DIR$\inc\c\ysizet.h
- $PROJ_DIR$\..\main.c
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\startup_max32655.s
- $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\UART\uart_revb.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\DMA\dma_reva.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\Source\led.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\GPIO\gpio_common.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\I2S\i2s_reva.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\mxc_assert.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\EvKit_V1\Source\board.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\GPIO\gpio_me17.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\Source\pb.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\mxc_delay.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\mxc_lock.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\pins_me17.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\sys_me17.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\I2S\i2s_me17.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\DMA\dma_me17.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\GPIO\gpio_reva.c
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\cmain.s
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\nvic_table.c
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\system_max32655.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\UART\uart_common.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\Source\stdio.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\UART\uart_me17.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\ICC\icc_me17.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\ICC\icc_reva.c
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\max32655.h
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\low_level_init.c
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\mxc_delay.h
- $TOOLKIT_DIR$\inc\c\stdio.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.DMA_1.0.0\dma_me17.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\ICC\icc_reva_regs.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\uart.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\ICC\icc_reva.h
- $PROJ_DIR$\Debug\List\I2S.map
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\flc.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.UART_1.0.0\uart_common.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\i2s.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.UART_1.0.0\uart_me17.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\Include\pb.h
- $TOOLKIT_DIR$\lib\shb_l.a
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\ICC\icc_common.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.UART_1.0.0\uart_revb.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim MAX32655 BSP _BSP.EvKit V1_1.0.0\board.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim MAX32655 BSP _BSP.EvKit V1_1.0.0\stdio.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.GPIO_1.0.0\gpio_reva.o
- $TOOLKIT_DIR$\lib\rt7M_tl.a
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.GPIO_1.0.0\gpio_common.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\low_level_init.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\mxc_lock.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\sys_me17.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim MAX32655 BSP _BSP.EvKit V1_1.0.0\pb.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\aes_regs.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\UART\uart_revb_regs.h
- $TOOLKIT_DIR$\lib\dl7M_tlf.a
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim MAX32655 BSP _BSP.EvKit V1_1.0.0\led.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\mxc_assert.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\icc.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\nvic_table.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\max32655.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\mxc_assert.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\nvic_table.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\pins_me17.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.ICC_1.0.0\icc_reva.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\UART\uart_revb.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.I2S_1.0.0\i2s_reva.o
- $PROJ_DIR$\Debug\Obj\main.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\mxc_delay.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\GPIO\gpio_common.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.DMA_1.0.0\dma_reva.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\GPIO\gpio_reva_regs.h
- $TOOLKIT_DIR$\inc\c\stdlib.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\.iar\config\linker\MAX32655_IAR.icf
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\mcr_regs.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\pwrseq_regs.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\DMA\dma_reva_regs.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.I2S_1.0.0\i2s_me17.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\Include\led.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\mxc_errors.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.GPIO_1.0.0\gpio_me17.o
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\CMSIS\Device\Maxim\MAX32655\Include\flc_regs.h
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Include\MAX32655\mxc_sys.h
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.ICC_1.0.0\icc_me17.o
- $PROJ_DIR$\Debug\Obj\CMSIS-Pack\Maxim Maxim API _Device.Startup_1.0.0\system_max32655.o
- $TOOLKIT_DIR$\lib\m7M_tl.a
-
-
- [ROOT_NODE]
-
-
- ILINK
- 80 8
-
-
-
-
- $PROJ_DIR$\Debug\Exe\I2S.out
-
-
- ILINK
- 80
-
-
-
-
- ILINK
- 118 89 101 97 90 76 115 93 125 91 122 111 128 109 36 94 102 113 95 107 108 17 96 129 82 84 88 112 100 130 92 86
-
-
-
-
- $PROJ_DIR$\..\main.c
-
-
- ICCARM
- 112
-
-
-
-
- ICCARM
- 12 1 3 47 4 23 15 32 75 117 38 40 44 10 6 14 26 18 42 25 29 0 16 11 30 2 105 21 13 7 83 103 74 43 124 27 127 104
-
-
-
-
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\startup_max32655.s
-
-
- AARM
- 17
-
-
-
-
- AARM
- 39
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\UART\uart_revb.c
-
-
- ICCARM
- 88
-
-
-
-
- ICCARM
- 12 1 3 23 15 32 75 40 44 10 6 14 26 18 42 29 0 16 2 105 21 28 13 7 106 43 124 27 127 78 110 99
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\DMA\dma_reva.c
-
-
- ICCARM
- 115
-
-
-
-
- ICCARM
- 12 1 3 23 15 20 32 40 44 10 6 14 26 18 42 29 0 16 2 105 21 13 7 106 43 124 37 27 127 24 121
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\Source\led.c
-
-
- ICCARM
- 101
-
-
-
-
- ICCARM
- 12 1 3 23 32 75 40 44 10 6 14 26 18 42 25 123 16 105 21 7 106 43 124 27
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\GPIO\gpio_common.c
-
-
- ICCARM
- 93
-
-
-
-
- ICCARM
- 12 1 3 23 20 32 40 44 10 6 14 26 18 42 16 105 21 7 106 43 124 27
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\I2S\i2s_reva.c
-
-
- ICCARM
- 111
-
-
-
-
- ICCARM
- 12 1 3 23 15 20 32 75 40 44 10 6 14 26 18 42 29 0 16 11 2 105 21 13 7 83 106 74 43 124 37 27 127 19 22
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\mxc_assert.c
-
-
- ICCARM
- 102
-
-
-
-
- ICCARM
- 12 1 3 23 32 40 10 6 14 26 18 42 16 105 21 7 43 124 27
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\EvKit_V1\Source\board.c
-
-
- ICCARM
- 89
-
-
-
-
- ICCARM
- 12 1 3 23 32 75 40 44 10 6 14 26 18 42 25 123 85 0 16 2 105 21 28 7 106 43 124 27 127 78
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\GPIO\gpio_me17.c
-
-
- ICCARM
- 125
-
-
-
-
- ICCARM
- 12 1 3 23 20 32 40 44 10 6 14 26 18 42 0 16 2 105 21 7 106 43 124 27 127 114 34 116
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\Source\pb.c
-
-
- ICCARM
- 97
-
-
-
-
- ICCARM
- 12 1 3 23 20 32 40 44 10 6 14 26 18 42 85 16 105 21 7 106 43 124 27
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\mxc_delay.c
-
-
- ICCARM
- 113
-
-
-
-
- ICCARM
- 12 1 3 23 20 32 40 44 10 6 14 26 18 42 0 16 2 105 21 7 74 43 124 27 127
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\mxc_lock.c
-
-
- ICCARM
- 95
-
-
-
-
- ICCARM
- 12 1 3 23 32 40 10 6 14 26 18 42 16 105 21 7 43 124 37 27
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\pins_me17.c
-
-
- ICCARM
- 108
-
-
-
-
- ICCARM
- 12 1 3 23 32 40 10 6 14 26 18 42 16 105 21 7 43 124 27
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\sys_me17.c
-
-
- ICCARM
- 96
-
-
-
-
- ICCARM
- 12 1 3 4 23 20 32 38 40 44 10 6 14 26 18 42 33 98 35 126 0 16 2 105 119 120 21 41 81 7 106 74 43 124 27 127
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\I2S\i2s_me17.c
-
-
- ICCARM
- 122
-
-
-
-
- ICCARM
- 12 1 3 23 15 20 32 75 40 44 10 6 14 26 18 42 29 0 16 11 2 105 21 13 7 83 106 74 43 124 37 27 127 19 22
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\DMA\dma_me17.c
-
-
- ICCARM
- 76
-
-
-
-
- ICCARM
- 12 1 3 23 15 20 32 40 44 10 6 14 26 18 42 29 0 16 2 105 21 13 7 106 43 124 37 27 127 24 121
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\GPIO\gpio_reva.c
-
-
- ICCARM
- 91
-
-
-
-
- ICCARM
- 12 1 3 23 20 32 40 44 10 6 14 26 18 42 16 105 21 7 106 43 124 27 114 34 116
-
-
-
-
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\cmain.s
-
-
- AARM
- 36
-
-
-
-
- AARM
- 9
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\SYS\nvic_table.c
-
-
- ICCARM
- 107
-
-
-
-
- ICCARM
- 12 1 3 4 23 32 38 40 44 10 6 14 26 18 42 16 105 21 7 43 124 27 104
-
-
-
-
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\system_max32655.c
-
-
- ICCARM
- 129
-
-
-
-
- ICCARM
- 72 12 1 3 47 4 23 32 75 117 38 40 44 10 6 14 26 18 42 126 0 16 30 2 21 7 103 43 124 27 127
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\UART\uart_common.c
-
-
- ICCARM
- 82
-
-
-
-
- ICCARM
- 12 1 3 23 32 40 10 6 14 26 18 42 0 16 2 105 21 28 7 43 124 27 127 78 5
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\Boards\MAX32655\Source\stdio.c
-
-
- ICCARM
- 90
-
-
-
-
- ICCARM
- 12 1 3 47 4 23 31 32 75 117 38 40 44 10 6 14 26 18 42 25 0 16 2 105 21 28 7 43 124 27 127 78
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\UART\uart_me17.c
-
-
- ICCARM
- 84
-
-
-
-
- ICCARM
- 12 1 3 23 15 32 40 10 6 14 26 18 42 29 0 16 2 105 21 28 13 7 106 43 124 27 127 78 5 110 99
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\ICC\icc_me17.c
-
-
- ICCARM
- 128
-
-
-
-
- ICCARM
- 12 1 3 23 32 40 10 6 14 26 18 42 0 16 30 2 105 21 7 103 106 43 124 27 127 87 79 77
-
-
-
-
- $PROJ_DIR$\..\..\..\..\Users\faisal.tariq\IAR-CMSIS-Packs\Maxim\MAX32655\1.0.0\Libraries\PeriphDrivers\Source\ICC\icc_reva.c
-
-
- ICCARM
- 109
-
-
-
-
- ICCARM
- 12 1 3 23 20 32 40 44 10 6 14 26 18 42 0 16 30 2 105 21 7 103 106 43 124 27 127 77
-
-
-
-
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\low_level_init.c
-
-
- ICCARM
- 94
-
-
-
-
- [MULTI_TOOL]
- ILINK
-
-
-
- Release
-
-
- [MULTI_TOOL]
- ILINK
-
-
-
diff --git a/Examples/MAX32655/I2S/IAR/I2S.ewd b/Examples/MAX32655/I2S/IAR/I2S.ewd
deleted file mode 100644
index d8b4e50469..0000000000
--- a/Examples/MAX32655/I2S/IAR/I2S.ewd
+++ /dev/null
@@ -1,2974 +0,0 @@
-
-
- 3
-
- Debug
-
- ARM
-
- 1
-
- C-SPY
- 2
-
- 32
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ARMSIM_ID
- 2
-
- 1
- 1
- 1
-
-
-
-
-
-
-
- CADI_ID
- 2
-
- 0
- 1
- 1
-
-
-
-
-
-
-
-
- CMSISDAP_ID
- 2
-
- 4
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- GDBSERVER_ID
- 2
-
- 0
- 1
- 1
-
-
-
-
-
-
-
-
-
-
- IJET_ID
- 2
-
- 8
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- JLINK_ID
- 2
-
- 16
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- LMIFTDI_ID
- 2
-
- 2
- 1
- 1
-
-
-
-
-
-
-
-
-
- NULINK_ID
- 2
-
- 0
- 1
- 1
-
-
-
-
-
-
- PEMICRO_ID
- 2
-
- 3
- 1
- 1
-
-
-
-
-
-
-
- STLINK_ID
- 2
-
- 7
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- THIRDPARTY_ID
- 2
-
- 0
- 1
- 1
-
-
-
-
-
-
-
- TIFET_ID
- 2
-
- 1
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- XDS100_ID
- 2
-
- 8
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\FreeRtos\FreeRtosArmPlugin.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\HWRTOSplugin\HWRTOSplugin.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin2.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\RemedyRtosViewer\RemedyRtosViewer.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8b.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8bBE.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin
- 0
-
-
- $EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin
- 0
-
-
- $EW_DIR$\common\plugins\TargetAccessServer\TargetAccessServer.ENU.ewplugin
- 0
-
-
- $EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin
- 0
-
-
-
-
- Release
-
- ARM
-
- 0
-
- C-SPY
- 2
-
- 32
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ARMSIM_ID
- 2
-
- 1
- 1
- 0
-
-
-
-
-
-
-
- CADI_ID
- 2
-
- 0
- 1
- 0
-
-
-
-
-
-
-
-
- CMSISDAP_ID
- 2
-
- 4
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- GDBSERVER_ID
- 2
-
- 0
- 1
- 0
-
-
-
-
-
-
-
-
-
-
- IJET_ID
- 2
-
- 8
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- JLINK_ID
- 2
-
- 16
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- LMIFTDI_ID
- 2
-
- 2
- 1
- 0
-
-
-
-
-
-
-
-
-
- NULINK_ID
- 2
-
- 0
- 1
- 0
-
-
-
-
-
-
- PEMICRO_ID
- 2
-
- 3
- 1
- 0
-
-
-
-
-
-
-
- STLINK_ID
- 2
-
- 7
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- THIRDPARTY_ID
- 2
-
- 0
- 1
- 0
-
-
-
-
-
-
-
- TIFET_ID
- 2
-
- 1
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- XDS100_ID
- 2
-
- 8
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\FreeRtos\FreeRtosArmPlugin.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\HWRTOSplugin\HWRTOSplugin.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin2.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\RemedyRtosViewer\RemedyRtosViewer.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8b.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8bBE.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin
- 0
-
-
- $TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin
- 0
-
-
- $EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin
- 0
-
-
- $EW_DIR$\common\plugins\TargetAccessServer\TargetAccessServer.ENU.ewplugin
- 0
-
-
- $EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin
- 0
-
-
-
-
diff --git a/Examples/MAX32655/I2S/IAR/I2S.ewp b/Examples/MAX32655/I2S/IAR/I2S.ewp
deleted file mode 100644
index 34b1c708c1..0000000000
--- a/Examples/MAX32655/I2S/IAR/I2S.ewp
+++ /dev/null
@@ -1,2318 +0,0 @@
-
-
- 3
-
- Debug
-
- ARM
-
- 1
-
- General
- 3
-
- 33
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ICCARM
- 2
-
- 37
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AARM
- 2
-
- 11
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- OBJCOPY
- 0
-
- 1
- 1
- 1
-
-
-
-
-
-
-
-
- CUSTOM
- 3
-
-
-
- 0
- inputOutputBased
-
-
-
- BUILDACTION
- 1
-
-
-
-
-
-
- ILINK
- 0
-
- 25
- 1
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IARCHIVE
- 0
-
- 0
- 1
- 1
-
-
-
-
-
-
-
- Release
-
- ARM
-
- 0
-
- General
- 3
-
- 33
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ICCARM
- 2
-
- 37
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AARM
- 2
-
- 11
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- OBJCOPY
- 0
-
- 1
- 1
- 0
-
-
-
-
-
-
-
-
- CUSTOM
- 3
-
-
-
- 0
- inputOutputBased
-
-
-
- BUILDACTION
- 1
-
-
-
-
-
-
- ILINK
- 0
-
- 25
- 1
- 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IARCHIVE
- 0
-
- 0
- 1
- 0
-
-
-
-
-
-
-
- $PROJ_DIR$\..\main.c
-
-
- CMSIS-Pack
- CMSISPack.Component
-
- $PROJ_DIR$\..\RTE\RTE_Components.h
-
-
- Maxim MAX32655 BSP _BSP.EvKit V1_1.0.0
- CMSISPack.Component
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/Boards/MAX32655/EvKit_V1/Source/board.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/Boards/MAX32655/Source/led.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/Boards/MAX32655/Source/pb.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/Boards/MAX32655/Source/stdio.c
-
-
-
- Maxim Maxim API _Device.DMA_1.0.0
- CMSISPack.Component
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/DMA/dma_me17.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/DMA/dma_reva.c
-
-
-
- Maxim Maxim API _Device.GPIO_1.0.0
- CMSISPack.Component
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/GPIO/gpio_common.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/GPIO/gpio_me17.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/GPIO/gpio_reva.c
-
-
-
- Maxim Maxim API _Device.I2S_1.0.0
- CMSISPack.Component
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/I2S/i2s_me17.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/I2S/i2s_reva.c
-
-
-
- Maxim Maxim API _Device.Startup_1.0.0
- CMSISPack.Component
-
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\cmain.s
-
-
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\low_level_init.c
-
-
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\max32655.h
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/SYS/mxc_assert.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/SYS/mxc_delay.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/SYS/mxc_lock.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/SYS/nvic_table.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/SYS/pins_me17.c
-
-
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\startup_max32655.s
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/SYS/sys_me17.c
-
-
- $PROJ_DIR$\..\RTE\Device\MAX32655_Cortex-M4\system_max32655.c
-
-
-
- Maxim Maxim API _Device.UART_1.0.0
- CMSISPack.Component
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/UART/uart_common.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/UART/uart_me17.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/UART/uart_revb.c
-
-
-
- Maxim Maxim API _Device.ICC_1.0.0
- CMSISPack.Component
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/ICC/icc_me17.c
-
-
- ${CMSIS_PACK_PATH_Maxim#MAX32655#1.0.0}$\Libraries/PeriphDrivers/Source/ICC/icc_reva.c
-
-
-
-
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<configuration xmlns:xs="http://www.w3.org/2001/XMLSchema-instance">
- <packages/>
- <device Dclock="96000000" Dcore="Cortex-M4" DcoreVersion="r0p1" Dendian="Little-endian" Dfamily="MAX32655-66" Dfpu="SP_FPU" Dmpu="NO_MPU" Dname="MAX32655" Dvendor="Maxim:23" Pname="Cortex-M4" Punits="2" info="ARM Cortex-M4 96 MHz, 512 kB RAM, 1 MB ROM" url="http://www.keil.com/dd2/maxim/max32655">
- <package info="Maxim Integrated MAX32655 Series Device Support, Board Support Package and Examples" name="MAX32655" url="http://www.mxim.net/microcontroller/pack/" vendor="Maxim" version="1.0.0"/>
- </device>
- <toolchain Tcompiler="IAR" Toutput="exe"/>
- <components>
- <component Cbundle="MAX32655 BSP" Cbundleversion="1.0.0" Cclass="BSP" Cgroup="EvKit V1" Cvendor="Maxim" Cversion="1.0.0" deviceDependent="1">
- <package name="MAX32655" url="http://www.mxim.net/microcontroller/pack/" vendor="Maxim" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/Boards/MAX32655/EvKit_V1/Include/" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/Boards/MAX32655/EvKit_V1/Source/board.c" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/Boards/MAX32655/Include/" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/Boards/MAX32655/Source/led.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/Boards/MAX32655/Source/pb.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/Boards/MAX32655/Source/stdio.c" version="1.0.0"/>
- </component>
- <component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.2.0">
- <package name="CMSIS" url="http://www.keil.com/pack/" vendor="ARM" version="5.5.1"/>
- <file category="doc" name="CMSIS/Documentation/Core/html/index.html"/>
- <file category="include" name="CMSIS/Core/Include/"/>
- </component>
- <component Cbundle="Maxim API" Cbundleversion="1.0.0" Cclass="Device" Cgroup="DMA" Cvendor="Maxim" Cversion="1.0.0" deviceDependent="1" versionMatchMode="fixed">
- <package name="MAX32655" url="http://www.mxim.net/microcontroller/pack/" vendor="Maxim" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/DMA/dma_me17.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/DMA/dma_reva.c" version="1.0.0"/>
- </component>
- <component Cbundle="Maxim API" Cbundleversion="1.0.0" Cclass="Device" Cgroup="GPIO" Cvendor="Maxim" Cversion="1.0.0" deviceDependent="1" versionMatchMode="fixed">
- <package name="MAX32655" url="http://www.mxim.net/microcontroller/pack/" vendor="Maxim" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/GPIO/gpio_me17.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/GPIO/gpio_reva.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/GPIO/gpio_common.c" version="1.0.0"/>
- </component>
- <component Cbundle="Maxim API" Cbundleversion="1.0.0" Cclass="Device" Cgroup="I2S" Cvendor="Maxim" Cversion="1.0.0" deviceDependent="1" versionMatchMode="fixed">
- <package name="MAX32655" url="http://www.mxim.net/microcontroller/pack/" vendor="Maxim" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/I2S/i2s_me17.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/I2S/i2s_reva.c" version="1.0.0"/>
- </component>
- <component Cbundle="Maxim API" Cbundleversion="1.0.0" Cclass="Device" Cgroup="ICC" Cvendor="Maxim" Cversion="1.0.0" deviceDependent="1" versionMatchMode="fixed">
- <package name="MAX32655" url="http://www.mxim.net/microcontroller/pack/" vendor="Maxim" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/ICC/icc_me17.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/ICC/icc_reva.c" version="1.0.0"/>
- </component>
- <component Cbundle="Maxim API" Cbundleversion="1.0.0" Cclass="Device" Cgroup="Startup" Cvendor="Maxim" Cversion="1.0.0" deviceDependent="1" versionMatchMode="fixed">
- <package name="MAX32655" url="http://www.mxim.net/microcontroller/pack/" vendor="Maxim" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/CMSIS/Device/Maxim/MAX32655/Include/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Include/MAX32655/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/ADC/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/AES/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/CRC/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/DMA/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/FLC/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/GPIO/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/I2C/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/I2S/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/ICC/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/LP/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/RTC/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/SPI/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/SYS/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/TMR/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/TRNG/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/UART/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/WDT/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/WUT/" version="1.0.0"/>
- <file category="include" deviceDependent="1" name="Libraries/PeriphDrivers/Source/PT/" version="1.0.0"/>
- <file attr="config" category="sourceC" condition="Startup IAR" deviceDependent="1" name="Libraries/CMSIS/Device/Maxim/MAX32655/Source/IAR/low_level_init.c" version="1.0.0"/>
- <file attr="config" category="sourceAsm" condition="Startup IAR" deviceDependent="1" name="Libraries/CMSIS/Device/Maxim/MAX32655/Source/IAR/startup_max32655.s" version="1.0.0"/>
- <file attr="config" category="sourceC" condition="Startup IAR" deviceDependent="1" name="Libraries/CMSIS/Device/Maxim/MAX32655/Source/IAR/low_level_init.c" version="1.0.0"/>
- <file attr="config" category="sourceAsm" condition="Startup IAR" deviceDependent="1" name="Libraries/CMSIS/Device/Maxim/MAX32655/Source/IAR/cmain.s" version="1.0.0"/>
- <file attr="config" category="sourceC" deviceDependent="1" name="Libraries/CMSIS/Device/Maxim/MAX32655/Source/system_max32655.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/SYS/nvic_table.c" version="1.0.0"/>
- <file attr="config" category="header" deviceDependent="1" name="Libraries/CMSIS/Device/Maxim/MAX32655/Include/max32655.h" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/SYS/mxc_assert.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/SYS/mxc_delay.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/SYS/mxc_lock.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/SYS/pins_me17.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/SYS/sys_me17.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/SYS/nvic_table.c" version="1.0.0"/>
- </component>
- <component Cbundle="Maxim API" Cbundleversion="1.0.0" Cclass="Device" Cgroup="UART" Cvendor="Maxim" Cversion="1.0.0" deviceDependent="1" versionMatchMode="fixed">
- <package name="MAX32655" url="http://www.mxim.net/microcontroller/pack/" vendor="Maxim" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/UART/uart_me17.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/UART/uart_revb.c" version="1.0.0"/>
- <file category="sourceC" deviceDependent="1" name="Libraries/PeriphDrivers/Source/UART/uart_common.c" version="1.0.0"/>
- </component>
- </components>
- <apis/>
-</configuration>
-
-
-
diff --git a/Examples/MAX32655/I2S/Makefile b/Examples/MAX32655/I2S/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/I2S/Makefile
+++ b/Examples/MAX32655/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/I2S/README.md b/Examples/MAX32655/I2S/README.md
index a40defd2d4..3eff7f3cca 100644
--- a/Examples/MAX32655/I2S/README.md
+++ b/Examples/MAX32655/I2S/README.md
@@ -1,23 +1,62 @@
## Description
-TBD
+This example demonstrates the capabilities of the I2S peripheral. This example demonstrates how to record audio from the on-board digital microphone and play the recorded audio back out through the headphone jack.
+Once the green LED is illiuminated the system is ready to begin recording. Recording will start when button SW3 is pressed and will continue until the button is released or the external memory is full.
+
+After the recording has finished the audio will begin playing after a 3 second delay.
## Software
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
-TBD
+If using the Standard EV Kit (EvKit\_V1):
+- Connect a USB cable between the PC and the CN1 (USB/PWR) connector.
+- Connect pins JP4(RX_SEL) and JP5(TX_SEL) to RX0 and TX0 header.
+- Open an terminal application on the PC and connect to the EV kit's console UART at 115200, 8-N-1.
+- Close jumper JP2 (LED0 EN).
+- Close jumper JP3 (LED1 EN).
+- Plug in headphones to the headphone jack (connector J3).
+
+If using the Featherboard (FTHR\_Apps\_P1):
+- Connect a USB cable between the PC and the J4 (USB/PWR) connector.
+- Open an terminal application on the PC and connect to the board's console UART at 115200, 8-N-1.
+- Plug in headphones to the headphone jack (connector J2).
## Expected Output
-TBD
+```
+******************* I2S Record/Playback Example *******************
+
+This example demonstrates how to record audio from the on-board
+digital microphone and play the recorded audio back out through
+the headphone jack.
+
+Once the green LED is illiuminated the system is ready to begin
+recording. Recording will start when button SW3 is pressed and will
+continue until the button is released or the external memory is
+full.
+
+After the recording has finished the audio will begin playing after
+a 3 second delay.
+
+Erasing external flash. This will take a moment...
+Erase complete.
+
+Press and hold SW3 to start recording.
+
+Recording started.
+Recording ended.
+
+Playback starting.
+Playback ended.
+```
diff --git a/Examples/MAX32655/I2S/main.c b/Examples/MAX32655/I2S/main.c
index d5f1196e05..5de3e4df84 100644
--- a/Examples/MAX32655/I2S/main.c
+++ b/Examples/MAX32655/I2S/main.c
@@ -1,6 +1,6 @@
/**
* @file main.c
- * @brief I2S Receiver Example
+ * @brief I2S Transmitter Example
* @details
* @note
*/
@@ -9,7 +9,7 @@
*
* Copyright (C) 2022-2023 Maxim Integrated Products, Inc. All Rights Reserved.
* (now owned by Analog Devices, Inc.),
- * Copyright (C) 2023 Analog Devices, Inc. All Rights Reserved. This software
+ * Copyright (C) 2023-2024 Analog Devices, Inc. All Rights Reserved. This software
* is proprietary to Analog Devices, Inc. and its licensors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -27,108 +27,237 @@
******************************************************************************/
/***** Includes *****/
-#include
-#include
+#include
#include
+#include
+#include
#include
-#include "mxc_sys.h"
+
+#include "board.h"
+#include "dma.h"
+#include "i2s.h"
#include "icc.h"
-#include "mxc_device.h"
+#include "led.h"
+#include "max9867.h"
#include "mxc_delay.h"
+#include "mxc_device.h"
+#include "mxc_sys.h"
#include "nvic_table.h"
-#include "board.h"
-#include "i2s.h"
+#include "pb.h"
+#include "Ext_Flash.h"
-#define I2S_RX_BUFFER_SIZE 256
-int32_t i2s_rx_buffer[I2S_RX_BUFFER_SIZE];
+/***** Definitions *****/
+#if defined(BOARD_FTHR_APPS_P1)
+#define I2C_MASTER MXC_I2C1 // SCL P0_16; SDA P0_17
+#define CONNECT_NUM 2
+#else
+#define I2C_MASTER MXC_I2C2 // SCL P0_30; SDA P0_31
+#define CONNECT_NUM 3
+#endif
+
+#define BUF_SIZE 16000
+#define SMPL_RATE 48000
+#define BUF_SEL(CUR_BUF, BUF1, BUF2) ((CUR_BUF == BUF1) ? BUF2 : BUF1)
/***** Global Data *****/
-volatile uint8_t i2s_flag = 0;
+Ext_Flash_Unblk_t free_flash;
+mxc_i2s_req_t i2s_req;
+volatile uint8_t i2s_done = 0;
+int16_t buf0[BUF_SIZE];
+int16_t buf1[BUF_SIZE];
+
+/*****************************************************************/
+void i2s_dma_cb(int handle, int error)
+{
+ i2s_done = 1;
+}
+
+/*****************************************************************/
+void DMA_IRQHandler(void)
+{
+ MXC_DMA_Handler();
+}
-void i2s_isr(void)
+/*****************************************************************/
+int i2s_init(void)
{
- i2s_flag = 1;
- /* Clear I2S interrupt flag */
- MXC_I2S_ClearFlags(MXC_F_I2S_INTFL_RX_THD_CH0);
+ int err = E_NO_ERROR;
+
+ i2s_req.wordSize = MXC_I2S_WSIZE_HALFWORD; // Configure I2S interface parameters
+ i2s_req.sampleSize = MXC_I2S_SAMPLESIZE_SIXTEEN;
+ i2s_req.bitsWord = 16;
+ i2s_req.adjust = MXC_I2S_ADJUST_LEFT;
+ i2s_req.justify = MXC_I2S_LSB_JUSTIFY;
+ i2s_req.wsPolarity = MXC_I2S_POL_NORMAL;
+ i2s_req.channelMode = MXC_I2S_EXTERNAL_SCK_EXTERNAL_WS; // BLCK & LRCLK generated by codec
+ i2s_req.stereoMode = MXC_I2S_MONO_RIGHT_CH; // Receive only right channel data from codec.
+ i2s_req.bitOrder = MXC_I2S_LSB_FIRST;
+ i2s_req.clkdiv = MXC_I2S_CalculateClockDiv(SMPL_RATE, i2s_req.wordSize) + 1;
+ i2s_req.rawData = NULL;
+ i2s_req.txData = NULL;
+ i2s_req.rxData = buf0;
+ i2s_req.length = sizeof(buf0);
+
+ err = MXC_I2S_Init(&i2s_req); // Initialize I2S
+ if (err != E_NO_ERROR) {
+ return err;
+ }
+
+ MXC_I2S_RegisterDMACallback(i2s_dma_cb);
+ MXC_NVIC_SetVector(DMA0_IRQn, DMA_IRQHandler);
+
+ return err;
+}
+
+/*****************************************************************/
+int ext_flash_init(void)
+{
+ int err;
+
+ err = Ext_Flash_Init();
+ if (err != E_NO_ERROR) {
+ return err;
+ }
+
+ printf("\nErasing external flash. This will take a moment...\n");
+ err = Ext_Flash_Bulk_Erase();
+ if (err == E_NO_ERROR) {
+ printf("Erase complete.\n");
+ } else {
+ printf("Erase failed with error: %d", err);
+ }
+
+ Ext_Flash_Quad(1);
+
+ return err;
+}
+
+/*****************************************************************/
+uint32_t record_audio(void)
+{
+ void *flash_buf = buf0;
+ void *i2s_buf = buf0;
+
+ uint32_t flash_addr = free_flash.start_addr;
+
+ i2s_done = 0;
+ MXC_DMA_ReleaseChannel(0);
+ LED_On(0);
+ MXC_I2S_RXDMAConfig(i2s_buf, sizeof(buf0)); // Start collecting first set of I2S samples
+
+ while (PB_Get(0) && flash_addr < free_flash.end_addr) {
+ while (!i2s_done) {}
+ // Wait for I2S transaction to finish
+
+ flash_buf = i2s_buf;
+ i2s_buf = BUF_SEL(i2s_buf, buf0, buf1); // Select sample buffer
+
+ i2s_done = 0; // Receive next set of audio samples
+ MXC_DMA_ReleaseChannel(0);
+ MXC_I2S_RXDMAConfig(i2s_buf, sizeof(buf0));
+
+ Ext_Flash_Program_Page(flash_addr, (uint8_t *)flash_buf, sizeof(buf0),
+ Ext_Flash_DataLine_Quad); // Store received audio samples
+ flash_addr += sizeof(buf0);
+ }
+ LED_Off(0);
+
+ return flash_addr; // Return flash address where the recording ended
+}
+
+/*****************************************************************/
+void playback_audio(uint32_t eor_addr)
+{
+ void *flash_buf = buf0;
+ void *i2s_buf = buf0;
+
+ LED_Off(0);
+ LED_On(1);
+
+ Ext_Flash_Read(free_flash.start_addr, (uint8_t *)flash_buf, sizeof(buf0),
+ Ext_Flash_DataLine_Quad); // Get first set of audio samples
+
+ for (int i = free_flash.start_addr; i < eor_addr; i += sizeof(buf0)) {
+ LED_Toggle(0);
+ LED_Toggle(1);
+
+ i2s_buf = flash_buf;
+
+ i2s_done = 0; // Start transmission of audio samples
+ MXC_DMA_ReleaseChannel(0);
+ MXC_I2S_TXDMAConfig(i2s_buf, sizeof(buf0));
+
+ flash_buf = BUF_SEL(flash_buf, buf0, buf1); // Get next set of audio samples
+ Ext_Flash_Read(i, (uint8_t *)flash_buf, sizeof(buf0), Ext_Flash_DataLine_Quad);
+
+ while (!i2s_done) {}
+ }
+
+ LED_Off(0);
+ LED_Off(1);
}
/*****************************************************************/
int main()
{
- int32_t err;
- mxc_i2s_req_t req;
- uint32_t rx_size;
- int32_t *buf_current, *buf_start, *buf_end;
+ int err;
+ uint32_t eor_addr;
- /* Enable cache */
- MXC_ICC_Enable(MXC_ICC0);
+ MXC_ICC_Enable(MXC_ICC0); // Enable cache
- /* Set system clock to 100 MHz */
- MXC_SYS_Clock_Select(MXC_SYS_CLOCK_IPO);
+ MXC_SYS_Clock_Select(MXC_SYS_CLOCK_IPO); // Set system clock to 100 MHz
SystemCoreClockUpdate();
- /* Jumper J20 (I2S CLK SEL) needs to be installed to INT position to provide 12.288MHz clock from on-board oscillator */
- printf("\n*** I2S Receiver Example ***\n");
-
- /* Initialize I2S RX buffer */
- memset(i2s_rx_buffer, 0, sizeof(i2s_rx_buffer));
-
- /* Configure I2S interface parameters */
- req.wordSize = MXC_I2S_WSIZE_WORD;
- req.sampleSize = MXC_I2S_SAMPLESIZE_THIRTYTWO;
- req.bitsWord = 32;
- req.adjust = MXC_I2S_ADJUST_LEFT;
- req.justify = MXC_I2S_MSB_JUSTIFY;
- req.wsPolarity = MXC_I2S_POL_NORMAL;
- req.channelMode = MXC_I2S_INTERNAL_SCK_WS_0;
- /* Get only left channel data from on-board microphone. Right channel samples are zeros */
- req.stereoMode = MXC_I2S_MONO_LEFT_CH;
- req.bitOrder = MXC_I2S_MSB_FIRST;
- /* I2S clock = 12.288MHz / (2*(req.clkdiv + 1)) = 1.024 MHz */
- /* I2S sample rate = 1.024 MHz/64 = 16kHz */
- req.clkdiv = 5;
- req.rawData = NULL;
- req.txData = NULL;
- req.rxData = i2s_rx_buffer;
- req.length = I2S_RX_BUFFER_SIZE;
-
- if ((err = MXC_I2S_Init(&req)) != E_NO_ERROR) {
- printf("\nError in I2S_Init: %d\n", err);
+ printf("\n******************* I2S Record/Playback Example *******************\n");
+
+ printf("\nThis example demonstrates how to record audio from the on-board\n");
+ printf("digital microphone and play the recorded audio back out through\n");
+ printf("the headphone jack.\n");
+
+ printf("\nOnce the green LED is illiuminated the system is ready to begin\n");
+ printf("recording. Recording will start when button SW3 is pressed and will\n");
+ printf("continue until the button is released or the external memory is\n");
+ printf("full.\n");
+
+ printf("\nAfter the recording has finished the audio will begin playing after\n");
+ printf("a 3 second delay.\n");
+ err = i2s_init(); // Initialize I2S interface
+ if (err != E_NO_ERROR) {
+ printf("Error configuring Audio Codec I2S interface.\n");
while (1) {}
}
- /* Set I2S RX FIFO threshold to generate interrupt */
- MXC_I2S_SetRXThreshold(4);
- MXC_NVIC_SetVector(I2S_IRQn, i2s_isr);
- NVIC_EnableIRQ(I2S_IRQn);
- /* Enable RX FIFO Threshold Interrupt */
- MXC_I2S_EnableInt(MXC_F_I2S_INTEN_RX_THD_CH0);
- MXC_I2S_RXEnable();
-
- buf_start = &i2s_rx_buffer[0];
- buf_end = &i2s_rx_buffer[I2S_RX_BUFFER_SIZE - 1];
- buf_current = buf_start;
-
- while (1) {
- /* Wait for I2S interrupt */
- while (i2s_flag == 0) {}
-
- /* Clear flag */
- i2s_flag = 0;
- /* Read number of samples in I2S RX FIFO */
- rx_size = MXC_I2S->dmach0 >> MXC_F_I2S_DMACH0_RX_LVL_POS;
- printf("%d ", rx_size);
-
- while (rx_size--) {
- /* Copy captured microphone sample into i2s_rx_buffer. The actual value is 18 MSB of 32-bit word */
- *buf_current++ = ((int32_t)MXC_I2S->fifoch0) >> 14;
-
- if (buf_current > buf_end) {
- buf_current = buf_start;
- }
- }
+ err = max9867_init(I2C_MASTER, 12288000, SMPL_RATE); // Initialize audio codec
+ if (err != E_NO_ERROR) {
+ printf("Error configuring audio codec: %i", err);
+ while (1) {}
}
+ err = ext_flash_init(); // Initialize external flash chip used to store audio samples
+ if (err != E_NO_ERROR) {
+ printf("Error initializing external flash.\n");
+ while (1) {}
+ }
+ free_flash = Ext_Flash_GetAvailableFlash();
+
+ printf("\nPress and hold SW3 to start recording.\n");
+ LED_On(1);
+ while (!PB_Get(0)) {}
+ // Wait for button press
+ MXC_Delay(MXC_DELAY_MSEC(500)); // Button debounce
+
+ printf("\nRecording started.\n");
+ eor_addr = record_audio(); // Record audio samples
+ printf("Recording ended.\n");
+
+ MXC_Delay(MXC_DELAY_SEC(5));
+
+ printf("\nPlayback starting.\n");
+ playback_audio(eor_addr); // Playback audio recording
+ printf("Playback ended.\n");
+
+ MXC_I2S_Shutdown();
+
return E_NO_ERROR;
}
diff --git a/Examples/MAX32655/I2S_Playback/max9867.c b/Examples/MAX32655/I2S/max9867.c
similarity index 100%
rename from Examples/MAX32655/I2S_Playback/max9867.c
rename to Examples/MAX32655/I2S/max9867.c
diff --git a/Examples/MAX32655/I2S_Playback/max9867.h b/Examples/MAX32655/I2S/max9867.h
similarity index 87%
rename from Examples/MAX32655/I2S_Playback/max9867.h
rename to Examples/MAX32655/I2S/max9867.h
index 6a3bf6ae12..1ce3b8359e 100644
--- a/Examples/MAX32655/I2S_Playback/max9867.h
+++ b/Examples/MAX32655/I2S/max9867.h
@@ -2,7 +2,7 @@
*
* Copyright (C) 2022-2023 Maxim Integrated Products, Inc. All Rights Reserved.
* (now owned by Analog Devices, Inc.),
- * Copyright (C) 2023 Analog Devices, Inc. All Rights Reserved. This software
+ * Copyright (C) 2023-2024 Analog Devices, Inc. All Rights Reserved. This software
* is proprietary to Analog Devices, Inc. and its licensors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -19,8 +19,8 @@
*
******************************************************************************/
-#ifndef EXAMPLES_MAX32655_I2S_PLAYBACK_MAX9867_H_
-#define EXAMPLES_MAX32655_I2S_PLAYBACK_MAX9867_H_
+#ifndef EXAMPLES_MAX32655_I2S_MAX9867_H_
+#define EXAMPLES_MAX32655_I2S_MAX9867_H_
//-----------------------------------------------------------------------------
// Includes
@@ -38,4 +38,4 @@ int max9867_init(mxc_i2c_regs_t *i2c_inst, int mclk, int lrclk);
int max9867_shutdown(void);
int max9867_status(void);
-#endif // EXAMPLES_MAX32655_I2S_PLAYBACK_MAX9867_H_
+#endif // EXAMPLES_MAX32655_I2S_MAX9867_H_
diff --git a/Examples/MAX32655/I2S_Playback/.cproject b/Examples/MAX32655/I2S_Playback/.cproject
deleted file mode 100644
index 8d3b762673..0000000000
--- a/Examples/MAX32655/I2S_Playback/.cproject
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Examples/MAX32655/I2S_Playback/.gdbinit b/Examples/MAX32655/I2S_Playback/.gdbinit
deleted file mode 100644
index 9c9d86fa02..0000000000
--- a/Examples/MAX32655/I2S_Playback/.gdbinit
+++ /dev/null
@@ -1,3 +0,0 @@
-target extended-remote localhost:2331
-file ./build/max32655.elf
-
diff --git a/Examples/MAX32655/I2S_Playback/.project b/Examples/MAX32655/I2S_Playback/.project
deleted file mode 100644
index 7f2f86714c..0000000000
--- a/Examples/MAX32655/I2S_Playback/.project
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
- I2S_Playback
-
-
-
-
-
- org.eclipse.cdt.managedbuilder.core.genmakebuilder
- clean,full,incremental,
-
-
-
-
- org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder
- full,incremental,
-
-
-
-
-
- org.eclipse.cdt.core.cnature
- org.eclipse.cdt.managedbuilder.core.managedBuildNature
- org.eclipse.cdt.managedbuilder.core.ScannerConfigNature
-
-
diff --git a/Examples/MAX32655/I2S_Playback/.settings/language.settings.xml b/Examples/MAX32655/I2S_Playback/.settings/language.settings.xml
deleted file mode 100644
index d32717b6f3..0000000000
--- a/Examples/MAX32655/I2S_Playback/.settings/language.settings.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Examples/MAX32655/I2S_Playback/.settings/org.eclipse.cdt.codan.core.prefs b/Examples/MAX32655/I2S_Playback/.settings/org.eclipse.cdt.codan.core.prefs
deleted file mode 100644
index 59c0b37ba7..0000000000
--- a/Examples/MAX32655/I2S_Playback/.settings/org.eclipse.cdt.codan.core.prefs
+++ /dev/null
@@ -1,93 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.cdt.codan.checkers.errnoreturn=Warning
-org.eclipse.cdt.codan.checkers.errnoreturn.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"No return\\")",implicit\=>false}
-org.eclipse.cdt.codan.checkers.errreturnvalue=Error
-org.eclipse.cdt.codan.checkers.errreturnvalue.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Unused return value\\")"}
-org.eclipse.cdt.codan.checkers.nocommentinside=-Error
-org.eclipse.cdt.codan.checkers.nocommentinside.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Nesting comments\\")"}
-org.eclipse.cdt.codan.checkers.nolinecomment=-Error
-org.eclipse.cdt.codan.checkers.nolinecomment.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Line comments\\")"}
-org.eclipse.cdt.codan.checkers.noreturn=Error
-org.eclipse.cdt.codan.checkers.noreturn.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"No return value\\")",implicit\=>false}
-org.eclipse.cdt.codan.internal.checkers.AbstractClassCreation=Error
-org.eclipse.cdt.codan.internal.checkers.AbstractClassCreation.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Abstract class cannot be instantiated\\")"}
-org.eclipse.cdt.codan.internal.checkers.AmbiguousProblem=Error
-org.eclipse.cdt.codan.internal.checkers.AmbiguousProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Ambiguous problem\\")"}
-org.eclipse.cdt.codan.internal.checkers.AssignmentInConditionProblem=Warning
-org.eclipse.cdt.codan.internal.checkers.AssignmentInConditionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Assignment in condition\\")"}
-org.eclipse.cdt.codan.internal.checkers.AssignmentToItselfProblem=Error
-org.eclipse.cdt.codan.internal.checkers.AssignmentToItselfProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Assignment to itself\\")"}
-org.eclipse.cdt.codan.internal.checkers.CStyleCastProblem=-Warning
-org.eclipse.cdt.codan.internal.checkers.CStyleCastProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"C-Style cast instead of C++ cast\\")"}
-org.eclipse.cdt.codan.internal.checkers.CaseBreakProblem=Warning
-org.eclipse.cdt.codan.internal.checkers.CaseBreakProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"No break at end of case\\")",no_break_comment\=>"no break",last_case_param\=>false,empty_case_param\=>false,enable_fallthrough_quickfix_param\=>false}
-org.eclipse.cdt.codan.internal.checkers.CatchByReference=Warning
-org.eclipse.cdt.codan.internal.checkers.CatchByReference.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Catching by reference is recommended\\")",unknown\=>false,exceptions\=>()}
-org.eclipse.cdt.codan.internal.checkers.CircularReferenceProblem=Error
-org.eclipse.cdt.codan.internal.checkers.CircularReferenceProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Circular inheritance\\")"}
-org.eclipse.cdt.codan.internal.checkers.ClassMembersInitialization=Warning
-org.eclipse.cdt.codan.internal.checkers.ClassMembersInitialization.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Class members should be properly initialized\\")",skip\=>true}
-org.eclipse.cdt.codan.internal.checkers.CopyrightProblem=-Warning
-org.eclipse.cdt.codan.internal.checkers.CopyrightProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Lack of copyright information\\")",regex\=>".*Copyright.*"}
-org.eclipse.cdt.codan.internal.checkers.DecltypeAutoProblem=Error
-org.eclipse.cdt.codan.internal.checkers.DecltypeAutoProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Invalid 'decltype(auto)' specifier\\")"}
-org.eclipse.cdt.codan.internal.checkers.FieldResolutionProblem=Error
-org.eclipse.cdt.codan.internal.checkers.FieldResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Field cannot be resolved\\")"}
-org.eclipse.cdt.codan.internal.checkers.FunctionResolutionProblem=Error
-org.eclipse.cdt.codan.internal.checkers.FunctionResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Function cannot be resolved\\")"}
-org.eclipse.cdt.codan.internal.checkers.GotoStatementProblem=-Warning
-org.eclipse.cdt.codan.internal.checkers.GotoStatementProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Goto statement used\\")"}
-org.eclipse.cdt.codan.internal.checkers.InvalidArguments=Error
-org.eclipse.cdt.codan.internal.checkers.InvalidArguments.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Invalid arguments\\")"}
-org.eclipse.cdt.codan.internal.checkers.InvalidTemplateArgumentsProblem=Error
-org.eclipse.cdt.codan.internal.checkers.InvalidTemplateArgumentsProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Invalid template argument\\")"}
-org.eclipse.cdt.codan.internal.checkers.LabelStatementNotFoundProblem=Error
-org.eclipse.cdt.codan.internal.checkers.LabelStatementNotFoundProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Label statement not found\\")"}
-org.eclipse.cdt.codan.internal.checkers.MemberDeclarationNotFoundProblem=Error
-org.eclipse.cdt.codan.internal.checkers.MemberDeclarationNotFoundProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Member declaration not found\\")"}
-org.eclipse.cdt.codan.internal.checkers.MethodResolutionProblem=Error
-org.eclipse.cdt.codan.internal.checkers.MethodResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Method cannot be resolved\\")"}
-org.eclipse.cdt.codan.internal.checkers.MissCaseProblem=-Warning
-org.eclipse.cdt.codan.internal.checkers.MissCaseProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Missing cases in switch\\")"}
-org.eclipse.cdt.codan.internal.checkers.MissDefaultProblem=-Warning
-org.eclipse.cdt.codan.internal.checkers.MissDefaultProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Missing default in switch\\")",defaultWithAllEnums\=>false}
-org.eclipse.cdt.codan.internal.checkers.MissReferenceProblem=-Warning
-org.eclipse.cdt.codan.internal.checkers.MissReferenceProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Missing reference return value in assignment operator\\")"}
-org.eclipse.cdt.codan.internal.checkers.MissSelfCheckProblem=-Warning
-org.eclipse.cdt.codan.internal.checkers.MissSelfCheckProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Missing self check in assignment operator\\")"}
-org.eclipse.cdt.codan.internal.checkers.NamingConventionFunctionChecker=-Info
-org.eclipse.cdt.codan.internal.checkers.NamingConventionFunctionChecker.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Name convention for function\\")",pattern\=>"^[a-z]",macro\=>true,exceptions\=>()}
-org.eclipse.cdt.codan.internal.checkers.NonVirtualDestructorProblem=Warning
-org.eclipse.cdt.codan.internal.checkers.NonVirtualDestructorProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Class has a virtual method and non-virtual destructor\\")"}
-org.eclipse.cdt.codan.internal.checkers.OverloadProblem=Error
-org.eclipse.cdt.codan.internal.checkers.OverloadProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Invalid overload\\")"}
-org.eclipse.cdt.codan.internal.checkers.RedeclarationProblem=Error
-org.eclipse.cdt.codan.internal.checkers.RedeclarationProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Invalid redeclaration\\")"}
-org.eclipse.cdt.codan.internal.checkers.RedefinitionProblem=Error
-org.eclipse.cdt.codan.internal.checkers.RedefinitionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Invalid redefinition\\")"}
-org.eclipse.cdt.codan.internal.checkers.ReturnStyleProblem=-Warning
-org.eclipse.cdt.codan.internal.checkers.ReturnStyleProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Return with parenthesis\\")"}
-org.eclipse.cdt.codan.internal.checkers.ScanfFormatStringSecurityProblem=-Warning
-org.eclipse.cdt.codan.internal.checkers.ScanfFormatStringSecurityProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Format String Vulnerability\\")"}
-org.eclipse.cdt.codan.internal.checkers.StatementHasNoEffectProblem=Warning
-org.eclipse.cdt.codan.internal.checkers.StatementHasNoEffectProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Statement has no effect\\")",macro\=>true,exceptions\=>()}
-org.eclipse.cdt.codan.internal.checkers.SuggestedParenthesisProblem=Warning
-org.eclipse.cdt.codan.internal.checkers.SuggestedParenthesisProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Suggested parenthesis around expression\\")",paramNot\=>false}
-org.eclipse.cdt.codan.internal.checkers.SuspiciousSemicolonProblem=Warning
-org.eclipse.cdt.codan.internal.checkers.SuspiciousSemicolonProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Suspicious semicolon\\")",else\=>false,afterelse\=>false}
-org.eclipse.cdt.codan.internal.checkers.TypeResolutionProblem=Error
-org.eclipse.cdt.codan.internal.checkers.TypeResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Type cannot be resolved\\")"}
-org.eclipse.cdt.codan.internal.checkers.UnusedFunctionDeclarationProblem=Warning
-org.eclipse.cdt.codan.internal.checkers.UnusedFunctionDeclarationProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Unused function declaration\\")",macro\=>true}
-org.eclipse.cdt.codan.internal.checkers.UnusedStaticFunctionProblem=Warning
-org.eclipse.cdt.codan.internal.checkers.UnusedStaticFunctionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Unused static function\\")",macro\=>true}
-org.eclipse.cdt.codan.internal.checkers.UnusedVariableDeclarationProblem=Warning
-org.eclipse.cdt.codan.internal.checkers.UnusedVariableDeclarationProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Unused variable declaration in file scope\\")",macro\=>true,exceptions\=>("@(\#)","$Id")}
-org.eclipse.cdt.codan.internal.checkers.UsingInHeaderProblem=-Warning
-org.eclipse.cdt.codan.internal.checkers.UsingInHeaderProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Using directive in header\\")"}
-org.eclipse.cdt.codan.internal.checkers.VariableResolutionProblem=Error
-org.eclipse.cdt.codan.internal.checkers.VariableResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Symbol is not resolved\\")"}
-org.eclipse.cdt.codan.internal.checkers.VirtualMethodCallProblem=-Error
-org.eclipse.cdt.codan.internal.checkers.VirtualMethodCallProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>"@suppress(\\"Virtual method call in constructor/destructor\\")"}
-org.eclipse.cdt.qt.core.qtproblem=Warning
-org.eclipse.cdt.qt.core.qtproblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>false,RUN_ON_INC_BUILD\=>false,RUN_ON_FILE_OPEN\=>true,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},suppression_comment\=>null}
diff --git a/Examples/MAX32655/I2S_Playback/.settings/org.eclipse.cdt.core.prefs b/Examples/MAX32655/I2S_Playback/.settings/org.eclipse.cdt.core.prefs
deleted file mode 100644
index 9c2edeb5c6..0000000000
--- a/Examples/MAX32655/I2S_Playback/.settings/org.eclipse.cdt.core.prefs
+++ /dev/null
@@ -1,15 +0,0 @@
-eclipse.preferences.version=1
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/BOARD/delimiter=;
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/BOARD/operation=append
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/BOARD/value=EvKit_V1
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/GCC_PREFIX/delimiter=;
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/GCC_PREFIX/operation=replace
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/GCC_PREFIX/value=arm-none-eabi-
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/PROJECT/delimiter=;
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/PROJECT/operation=append
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/PROJECT/value=I2S_Playback
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/TARGET/delimiter=;
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/TARGET/operation=append
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/TARGET/value=MAX32655
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/append=true
-environment/project/cdt.managedbuild.toolchain.gnu.cross.base.1028364529/appendContributed=true
diff --git a/Examples/MAX32655/I2S_Playback/.vscode/README.md b/Examples/MAX32655/I2S_Playback/.vscode/README.md
deleted file mode 100755
index 58733e941c..0000000000
--- a/Examples/MAX32655/I2S_Playback/.vscode/README.md
+++ /dev/null
@@ -1,47 +0,0 @@
-# VSCode-Maxim
-
-_(If you're viewing this document from within Visual Studio Code you can press `CTRL+SHIFT+V` to open a Markdown preview window.)_
-
-## Quick Links
-
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
-* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
-
-## Introduction
-
-VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html).
-
-The following features are supported:
-
-* Code editing with intellisense down to the register level
-* Code compilation with the ability to easily re-target a project for different microcontrollers and boards
-* Flashing programs
-* GUI and command-line debugging
-
-## Dependencies
-
-* [Visual Studio Code](https://code.visualstudio.com/)
- * [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
- * [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
-
-## Installation
-
-Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-
-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.
-
-## Usage
-
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
-
-## Issue Tracker
-
-Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github.
-
-New issues should contain _at minimum_ the following information:
-
-* Visual Studio Code version #s (see `Help -> About`)
-* C/C++ Extension version #
-* Target microcontroller and evaluation platform
-* The projects `.vscode` folder and `Makefile` (where applicable). Standard compression formats such as `.zip`, `.rar`, `.tar.gz`, etc. are all acceptable.
diff --git a/Examples/MAX32655/I2S_Playback/.vscode/c_cpp_properties.json b/Examples/MAX32655/I2S_Playback/.vscode/c_cpp_properties.json
deleted file mode 100755
index dfbed47b58..0000000000
--- a/Examples/MAX32655/I2S_Playback/.vscode/c_cpp_properties.json
+++ /dev/null
@@ -1,53 +0,0 @@
-{
- "configurations": [
- {
- "name": "Win32",
- "includePath": [
- "${default}"
- ],
- "defines": [
- "${default}"
- ],
- "intelliSenseMode": "gcc-arm",
- "compilerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gcc.exe",
- "browse": {
- "path": [
- "${default}"
- ]
- }
- },
- {
- "name": "Linux",
- "includePath": [
- "${default}"
- ],
- "defines": [
- "${default}"
- ],
- "intelliSenseMode": "gcc-arm",
- "compilerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gcc",
- "browse": {
- "path": [
- "${default}"
- ]
- }
- },
- {
- "name": "Mac",
- "includePath": [
- "${default}"
- ],
- "defines": [
- "${default}"
- ],
- "intelliSenseMode": "gcc-arm",
- "compilerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gcc",
- "browse": {
- "path": [
- "${default}"
- ]
- }
- }
- ],
- "version": 4
-}
\ No newline at end of file
diff --git a/Examples/MAX32655/I2S_Playback/.vscode/flash.gdb b/Examples/MAX32655/I2S_Playback/.vscode/flash.gdb
deleted file mode 100755
index 8f22801a47..0000000000
--- a/Examples/MAX32655/I2S_Playback/.vscode/flash.gdb
+++ /dev/null
@@ -1,17 +0,0 @@
-define flash_m4
- set architecture armv7e-m
- set remotetimeout 10
- target remote | openocd -c "gdb_port pipe;log_output flash.log" -s $arg0/scripts -f interface/$arg1 -f target/$arg2 -c "init; reset halt"
- load
- compare-sections
- monitor reset halt
-end
-
-define flash_m4_run
- set architecture armv7e-m
- set remotetimeout 10
- target remote | openocd -c "gdb_port pipe;log_output flash.log" -s $arg0/scripts -f interface/$arg1 -f target/$arg2 -c "init; reset halt"
- load
- compare-sections
- monitor resume
-end
diff --git a/Examples/MAX32655/I2S_Playback/.vscode/launch.json b/Examples/MAX32655/I2S_Playback/.vscode/launch.json
deleted file mode 100755
index 01fe519904..0000000000
--- a/Examples/MAX32655/I2S_Playback/.vscode/launch.json
+++ /dev/null
@@ -1,133 +0,0 @@
-{
- "configurations": [
- {
- "name": "Debug Arm (Cortex-debug)",
- "cwd":"${workspaceRoot}",
- "executable": "${workspaceFolder}/build/${config:program_file}",
- "loadFiles": ["${workspaceFolder}/build/${config:program_file}"],
- "symbolFiles": [{
- "file": "${workspaceFolder}/build/${config:symbol_file}"
- }],
- "request": "launch",
- "type": "cortex-debug",
- "servertype": "openocd",
- "linux": {
- "gdbPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gdb",
- "serverpath": "${config:OCD_path}/openocd",
- },
- "windows": {
- "gdbPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gdb.exe",
- "serverpath": "${config:OCD_path}/openocd.exe",
- },
- "osx": {
- "gdbPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gdb",
- "serverpath": "${config:OCD_path}/openocd",
- },
- "searchDir": ["${config:OCD_path}/scripts"],
- "configFiles": ["interface/${config:M4_OCD_interface_file}", "target/${config:M4_OCD_target_file}"],
- "interface": "swd",
- "runToEntryPoint": "main",
- "svdFile": "${config:MAXIM_PATH}/Libraries/CMSIS/Device/Maxim/${config:target}/Include/${config:target}.svd"
- },
- {
- "name": "GDB (Arm M4)",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceFolder}/build/${config:program_file}",
- "args": [],
- "stopAtEntry": true,
- "cwd": "${workspaceFolder}",
- "environment": [],
- "externalConsole": false,
- "MIMode": "gdb",
- "linux": {
- "miDebuggerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gdb",
- "debugServerPath": "${config:OCD_path}/openocd",
- },
- "windows": {
- "miDebuggerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gdb.exe",
- "debugServerPath": "${config:OCD_path}/openocd.exe",
- },
- "osx": {
- "miDebuggerPath": "${config:ARM_GCC_path}/bin/arm-none-eabi-gdb",
- "debugServerPath": "${config:OCD_path}/bin/openocd",
- },
- "logging": {
- "exceptions": true,
- "trace": false,
- "traceResponse": false,
- "engineLogging": false
- },
- "miDebuggerServerAddress": "localhost:3333",
- "debugServerArgs": "-s ${config:OCD_path}/scripts -f interface/${config:M4_OCD_interface_file} -f target/${config:M4_OCD_target_file} -c \"init; reset halt\"",
- "serverStarted": "Info : Listening on port 3333 for gdb connections",
- "filterStderr": true,
- "targetArchitecture": "arm",
- "customLaunchSetupCommands": [
- {"text":"-list-features"}
- ],
- "setupCommands": [
- { "text":"set logging overwrite on"},
- { "text":"set logging file debug-arm.log"},
- { "text":"set logging on"},
- { "text":"cd ${workspaceFolder}" },
- { "text":"exec-file build/${config:program_file}" },
- { "text":"symbol-file build/${config:symbol_file}" },
- { "text":"target remote localhost:3333" },
- { "text":"monitor reset halt" },
- { "text":"set $pc=Reset_Handler"},
- { "text":"b main" }
- ]
- },
- {
- "name": "GDB (RISC-V)",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceFolder}/buildrv/${config:program_file}",
- "args": [],
- "stopAtEntry": false,
- "cwd": "${workspaceFolder}",
- "environment": [],
- "externalConsole": false,
- "MIMode": "gdb",
- "linux": {
- "miDebuggerPath": "${config:xPack_GCC_path}/bin/riscv-none-elf-gdb",
- "debugServerPath": "${config:OCD_path}/openocd",
- },
- "windows": {
- "miDebuggerPath": "${config:xPack_GCC_path}/bin/riscv-none-elf-gdb.exe",
- "debugServerPath": "${config:OCD_path}/openocd.exe",
- },
- "osx": {
- "miDebuggerPath": "${config:xPack_GCC_path}/bin/riscv-none-elf-gdb",
- "debugServerPath": "${config:OCD_path}/bin/openocd",
- },
- "logging": {
- "exceptions": true,
- "trace": false,
- "traceResponse": false,
- "engineLogging": false
- },
- "miDebuggerServerAddress": "localhost:3334",
- "debugServerArgs": "-c \"gdb_port 3334\" -s ${config:OCD_path}/scripts -f interface/${config:RV_OCD_interface_file} -f target/${config:RV_OCD_target_file}",
- "serverStarted": "Info : Listening on port 3334 for gdb connections",
- "filterStderr": true,
- "customLaunchSetupCommands": [
- {"text":"-list-features"}
- ],
- "targetArchitecture": "arm",
- "setupCommands": [
- { "text":"set logging overwrite on"},
- { "text":"set logging file debug-riscv.log"},
- { "text":"set logging on"},
- { "text":"cd ${workspaceFolder}" },
- { "text": "set architecture riscv:rv32", "ignoreFailures": false },
- { "text":"exec-file build/${config:program_file}", "ignoreFailures": false },
- { "text":"symbol-file buildrv/${config:symbol_file}", "ignoreFailures": false },
- { "text":"target remote localhost:3334" },
- { "text":"b main" },
- { "text": "set $pc=Reset_Handler","ignoreFailures": false }
- ]
- }
- ]
-}
diff --git a/Examples/MAX32655/I2S_Playback/.vscode/settings.json b/Examples/MAX32655/I2S_Playback/.vscode/settings.json
deleted file mode 100755
index 407c2b61a6..0000000000
--- a/Examples/MAX32655/I2S_Playback/.vscode/settings.json
+++ /dev/null
@@ -1,84 +0,0 @@
-{
- "terminal.integrated.env.windows": {
- "Path":"${config:OCD_path};${config:ARM_GCC_path}/bin;${config:xPack_GCC_path}/bin;${config:MSYS_path}/usr/bin;${config:Make_path};${env:PATH}",
- "MAXIM_PATH":"${config:MAXIM_PATH}"
- },
- "terminal.integrated.defaultProfile.windows": "Command Prompt",
-
- "terminal.integrated.env.linux": {
- "PATH":"${config:OCD_path}:${config:ARM_GCC_path}/bin:${config:xPack_GCC_path}/bin:${config:Make_path}:${env:PATH}",
- "MAXIM_PATH":"${config:MAXIM_PATH}"
- },
- "terminal.integrated.env.osx": {
- "PATH":"${config:OCD_path}/bin:${config:ARM_GCC_path}/bin:${config:xPack_GCC_path}/bin:${config:Make_path}:{env:PATH}",
- "MAXIM_PATH":"${config:MAXIM_PATH}"
- },
-
- "target":"MAX32655",
- "board":"EvKit_V1",
-
- "project_name":"${workspaceFolderBasename}",
-
- "program_file":"${config:project_name}.elf",
- "symbol_file":"${config:program_file}",
-
- "M4_OCD_interface_file":"cmsis-dap.cfg",
- "M4_OCD_target_file":"max32655.cfg",
- "RV_OCD_interface_file":"ftdi/olimex-arm-usb-ocd-h.cfg",
- "RV_OCD_target_file":"${config:target}_riscv.cfg",
-
- "v_Arm_GCC":"10.3",
- "v_xPack_GCC":"12.2.0-3.1",
-
- "OCD_path":"${config:MAXIM_PATH}/Tools/OpenOCD",
- "ARM_GCC_path":"${config:MAXIM_PATH}/Tools/GNUTools/${config:v_Arm_GCC}",
- "xPack_GCC_path":"${config:MAXIM_PATH}/Tools/xPack/riscv-none-elf-gcc/${config:v_xPack_GCC}",
- "Make_path":"${config:MAXIM_PATH}/Tools/GNUTools/Make",
- "MSYS_path":"${config:MAXIM_PATH}/Tools/MSYS2",
-
- "C_Cpp.default.includePath": [
- "${workspaceFolder}",
- "${workspaceFolder}/**",
- "${config:MAXIM_PATH}/Libraries/Boards/${config:target}/Include",
- "${config:MAXIM_PATH}/Libraries/Boards/${config:target}/${config:board}/Include",
- "${config:MAXIM_PATH}/Libraries/CMSIS/Device/Maxim/${config:target}/Include",
- "${config:MAXIM_PATH}/Libraries/CMSIS/Include",
- "${config:ARM_GCC_path}/arm-none-eabi/include",
- "${config:ARM_GCC_path}/lib/gcc/arm-none-eabi/${config:v_Arm_GCC}/include",
- "${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
- ],
- "C_Cpp.default.browse.path": [
- "${workspaceFolder}",
- "${config:MAXIM_PATH}/Libraries/Boards/${config:target}/Source",
- "${config:MAXIM_PATH}/Libraries/Boards/${config:target}/${config:board}/Source",
- "${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
- ],
- "C_Cpp.default.defines": [
-
- ],
- "C_Cpp.default.forcedInclude": [
- "${workspaceFolder}/build/project_defines.h"
- ]
-}
-
diff --git a/Examples/MAX32655/I2S_Playback/.vscode/tasks.json b/Examples/MAX32655/I2S_Playback/.vscode/tasks.json
deleted file mode 100755
index e95445e2b3..0000000000
--- a/Examples/MAX32655/I2S_Playback/.vscode/tasks.json
+++ /dev/null
@@ -1,115 +0,0 @@
-{
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build",
- "type": "shell",
- "command": "make -r -j 8 --output-sync=target --no-print-directory TARGET=${config:target} BOARD=${config:board} MAXIM_PATH=${config:MAXIM_PATH} MAKE=make PROJECT=${config:project_name}",
- "osx":{
- "command": "source ~/.zshrc && make -r -j 8 --output-sync=target --no-print-directory TARGET=${config:target} BOARD=${config:board} MAXIM_PATH=${config:MAXIM_PATH} MAKE=make PROJECT=${config:project_name}"
- },
- "group": "build",
- "problemMatcher": []
- },
- {
- "label": "clean",
- "type": "shell",
- "command": "make -j 8 clean --output-sync=target --no-print-directory TARGET=${config:target} BOARD=${config:board} MAXIM_PATH=${config:MAXIM_PATH} MAKE=make PROJECT=${config:project_name}",
- "osx":{
- "command": "source ~/.zshrc && make -j 8 clean --output-sync=target --no-print-directory TARGET=${config:target} BOARD=${config:board} MAXIM_PATH=${config:MAXIM_PATH} MAKE=make PROJECT=${config:project_name}"
- },
- "group": "build",
- "problemMatcher": []
- },
- {
- "label": "clean-periph",
- "type": "shell",
- "command": "make -j 8 distclean --output-sync=target --no-print-directory TARGET=${config:target} BOARD=${config:board} MAXIM_PATH=${config:MAXIM_PATH} MAKE=make PROJECT=${config:project_name}",
- "osx":{
- "command": "source ~/.zshrc && make -j 8 distclean --output-sync=target --no-print-directory TARGET=${config:target} BOARD=${config:board} MAXIM_PATH=${config:MAXIM_PATH} MAKE=make PROJECT=${config:project_name}"
- },
- "group": "build",
- "problemMatcher": []
- },
- {
- "label": "flash",
- "type": "shell",
- "command": "arm-none-eabi-gdb",
- "args": [
- "--cd=\"${workspaceFolder}\"",
- "--se=\"build/${config:program_file}\"",
- "--symbols=build/${config:symbol_file}",
- "-x=\"${workspaceFolder}/.vscode/flash.gdb\"",
- "--ex=\"flash_m4 ${config:OCD_path} ${config:M4_OCD_interface_file} ${config:M4_OCD_target_file}\"",
- "--batch"
- ],
- "group": "build",
- "problemMatcher": [],
- "dependsOn":["build"]
- },
- {
- "label": "flash & run",
- "type": "shell",
- "command": "arm-none-eabi-gdb",
- "args": [
- "--cd=\"${workspaceFolder}\"",
- "--se=\"build/${config:program_file}\"",
- "--symbols=build/${config:symbol_file}",
- "-x=\"${workspaceFolder}/.vscode/flash.gdb\"",
- "--ex=\"flash_m4_run ${config:OCD_path} ${config:M4_OCD_interface_file} ${config:M4_OCD_target_file}\"",
- "--batch"
- ],
- "group": "build",
- "problemMatcher": [],
- "dependsOn":["build"]
- },
- {
- "label": "erase flash",
- "type": "shell",
- "command": "openocd",
- "args": [
- "-s", "${config:OCD_path}/scripts",
- "-f", "interface/${config:M4_OCD_interface_file}",
- "-f", "target/${config:M4_OCD_target_file}",
- "-c", "\"init; reset halt; max32xxx mass_erase 0;\"",
- "-c", "exit"
- ],
- "group":"build",
- "problemMatcher": [],
- "dependsOn":[]
- },
- {
- "label": "openocd (m4)",
- "type": "shell",
- "command": "openocd",
- "args": [
- "-s",
- "${config:OCD_path}/scripts",
- "-f",
- "interface/${config:M4_OCD_interface_file}",
- "-f",
- "target/${config:M4_OCD_target_file}",
- "-c",
- "\"init; reset halt\""
- ],
- "problemMatcher": [],
- "dependsOn":[]
- },
- {
- "label": "gdb (m4)",
- "type": "shell",
- "command": "arm-none-eabi-gdb",
- "args": [
- "--ex=\"cd ${workspaceFolder}\"",
- "--se=\"build/${config:program_file}\"",
- "--symbols=build/${config:symbol_file}",
- "--ex=\"target remote localhost:3333\"",
- "--ex=\"monitor reset halt\"",
- "--ex=\"b main\"",
- "--ex=\"c\""
- ],
- "problemMatcher": [],
- "dependsOn":[]
- },
- ]
-}
\ No newline at end of file
diff --git a/Examples/MAX32655/I2S_Playback/I2S_Playback.launch b/Examples/MAX32655/I2S_Playback/I2S_Playback.launch
deleted file mode 100644
index c06062ad1f..0000000000
--- a/Examples/MAX32655/I2S_Playback/I2S_Playback.launch
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Examples/MAX32655/I2S_Playback/Makefile b/Examples/MAX32655/I2S_Playback/Makefile
deleted file mode 100644
index 11c18297c6..0000000000
--- a/Examples/MAX32655/I2S_Playback/Makefile
+++ /dev/null
@@ -1,383 +0,0 @@
-###############################################################################
- #
- # Copyright (C) 2022-2023 Maxim Integrated Products, Inc. All Rights Reserved.
- # (now owned by Analog Devices, Inc.),
- # Copyright (C) 2023 Analog Devices, Inc. All Rights Reserved. This software
- # is proprietary to Analog Devices, Inc. and its licensors.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- ##############################################################################
-
-# ** Readme! **
-# Don't edit this file! This is the core Makefile for a MaximSDK
-# project. The available configuration options can be overridden
-# in "project.mk", on the command-line, or with system environment
-# variables.
-
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
-# for more detailed instructions on how to use this system.
-
-# The detailed instructions mentioned above are easier to read than
-# this file, but the comments found in this file also outline the
-# available configuration variables. This file is organized into
-# sub-sections, some of which expose config variables.
-
-
-# *******************************************************************************
-# Set the target microcontroller and board to compile for.
-
-# Every TARGET microcontroller has some Board Support Packages (BSPs) that are
-# available for it under the MaximSDK/Libraries/Boards/TARGET folder. The BSP
-# that gets selected is MaximSDK/Libraries/Boards/TARGET/BOARD.
-
-# Configuration Variables:
-# - TARGET : Override the default target microcontroller. Ex: TARGET=MAX78000
-# - BOARD : Override the default BSP (case sensitive). Ex: BOARD=EvKit_V1, BOARD=FTHR_RevA
-
-
-ifeq "$(TARGET)" ""
-# Default target microcontroller
-TARGET := MAX32655
-TARGET_UC := MAX32655
-TARGET_LC := max32655
-else
-# "TARGET" has been overridden in the environment or on the command-line.
-# We need to calculate an upper and lowercase version of the part number,
-# because paths on Linux and MacOS are case-sensitive.
-TARGET_UC := $(subst m,M,$(subst a,A,$(subst x,X,$(TARGET))))
-TARGET_LC := $(subst M,m,$(subst A,a,$(subst X,x,$(TARGET))))
-endif
-
-# Default board.
-BOARD ?= EvKit_V1
-
-# *******************************************************************************
-# Locate the MaximSDK
-
-# This Makefile needs to know where to find the MaximSDK, and the MAXIM_PATH variable
-# should point to the root directory of the MaximSDK installation. Setting this manually
-# is usually only required if you're working on the command-line.
-
-# If MAXIM_PATH is not specified, we assume the project still lives inside of the MaximSDK
-# and move up from this project's original location.
-
-# Configuration Variables:
-# - MAXIM_PATH : Tell this Makefile where to find the MaximSDK. Ex: MAXIM_PATH=C:/MaximSDK
-
-
-ifneq "$(MAXIM_PATH)" ""
-# Sanitize MAXIM_PATH for backslashes
-MAXIM_PATH := $(subst \,/,$(MAXIM_PATH))
-# Locate some other useful paths...
-LIBS_DIR := $(abspath $(MAXIM_PATH)/Libraries)
-CMSIS_ROOT := $(LIBS_DIR)/CMSIS
-endif
-
-# *******************************************************************************
-# Include project Makefile. We do this after formulating TARGET, BOARD, and MAXIM_PATH
-# in case project.mk needs to reference those values. However, we also include
-# this as early as possible in the Makefile so that it can append to or override
-# the variables below.
-
-
-PROJECTMK ?= $(abspath ./project.mk)
-include $(PROJECTMK)
-$(info Loaded project.mk)
-# PROJECTMK is also used by implicit rules and other libraries to add project.mk as a watch file
-
-# *******************************************************************************
-# Final path sanitization and re-calculation. No options here.
-
-ifeq "$(MAXIM_PATH)" ""
-# MAXIM_PATH is still not defined...
-DEPTH := ../../../
-MAXIM_PATH := $(abspath $(DEPTH))
-$(warning Warning: MAXIM_PATH is not set! Set MAXIM_PATH in your environment or in project.mk to clear this warning.)
-$(warning Warning: Attempting to use $(MAXIM_PATH) calculated from relative path)
-else
-# Sanitize MAXIM_PATH for backslashes
-MAXIM_PATH := $(subst \,/,$(MAXIM_PATH))
-endif
-
-# Final recalculation of LIBS_DIR/CMSIS_ROOT
-LIBS_DIR := $(abspath $(MAXIM_PATH)/Libraries)
-CMSIS_ROOT := $(LIBS_DIR)/CMSIS
-
-# One final UC/LC check in case user set TARGET in project.mk
-TARGET_UC := $(subst m,M,$(subst a,A,$(subst x,X,$(TARGET))))
-TARGET_LC := $(subst M,m,$(subst A,a,$(subst X,x,$(TARGET))))
-
-export TARGET
-export TARGET_UC
-export TARGET_LC
-export CMSIS_ROOT
-# TODO: Remove dependency on exports for these variables.
-
-# *******************************************************************************
-# Set up search paths, and auto-detect all source code on those paths.
-
-# The following paths are searched by default, where "./" is the project directory.
-# ./
-# |- *.h
-# |- *.c
-# |-include (optional)
-# |- *.h
-# |-src (optional)
-# |- *.c
-
-# Configuration Variables:
-# - VPATH : Tell this Makefile to search additional locations for source (.c) files.
-# You should use the "+=" operator with this option.
-# Ex: VPATH += your/new/path
-# - IPATH : Tell this Makefile to search additional locations for header (.h) files.
-# You should use the "+=" operator with this option.
-# Ex: VPATH += your/new/path
-# - SRCS : Tell this Makefile to explicitly add a source (.c) file to the build.
-# This is really only useful if you want to add a source file that isn't
-# on any VPATH, in which case you can add the full path to the file here.
-# You should use the "+=" operator with this option.
-# Ex: SRCS += your/specific/source/file.c
-# - AUTOSEARCH : Set whether this Makefile should automatically detect .c files on
-# VPATH and add them to the build. This is enabled by default. Set
-# to 0 to disable. If autosearch is disabled, source files must be
-# manually added to SRCS.
-# Ex: AUTOSEARCH = 0
-
-
-# Where to find source files for this project.
-VPATH += .
-VPATH += src
-VPATH := $(VPATH)
-
-# Where to find header files for this project
-IPATH += .
-IPATH += include
-IPATH := $(IPATH)
-
-AUTOSEARCH ?= 1
-ifeq ($(AUTOSEARCH), 1)
-# Auto-detect all C/C++ source files on VPATH
-SRCS += $(wildcard $(addsuffix /*.c, $(VPATH)))
-SRCS += $(wildcard $(addsuffix /*.cpp, $(VPATH)))
-endif
-
-# Collapse SRCS before passing them on to the next stage
-SRCS := $(SRCS)
-
-# *******************************************************************************
-# Set the output filename
-
-# Configuration Variables:
-# - PROJECT : Override the default output filename. Ex: PROJECT=MyProject
-
-
-# The default value creates a file named after the target micro. Ex: MAX78000.elf
-PROJECT ?= $(TARGET_LC)
-
-# *******************************************************************************
-# Compiler options
-
-# Configuration Variables:
-# - DEBUG : Set DEBUG=1 to build explicitly for debugging. This adds some additional
-# symbols and sets -Og as the default optimization level.
-# - MXC_OPTIMIZE_CFLAGS : Override the default compiler optimization level.
-# Ex: MXC_OPTIMIZE_CFLAGS = -O2
-# - PROJ_CFLAGS : Add additional compiler flags to the build.
-# You should use the "+=" operator with this option.
-# Ex: PROJ_CFLAGS += -Wextra
-# - MFLOAT_ABI : Set the floating point acceleration level.
-# The only options are "hard", "soft", or "softfp".
-# Ex: MFLOAT_ABI = hard
-# - LINKERFILE : Override the default linkerfile.
-# Ex: LINKERFILE = customlinkerfile.ld
-# - LINKERPATH : Override the default search location for $(LINKERFILE)
-# The default search location is $(CMSIS_ROOT)/Device/Maxim/$(TARGET_UC)/Source/GCC
-# If $(LINKERFILE) cannot be found at this path, then the root project
-# directory will be used as a fallback.
-
-# Select 'GCC' or 'IAR' compiler
-ifeq "$(COMPILER)" ""
-COMPILER := GCC
-endif
-
-# Set default compiler optimization levels
-ifeq "$(MAKECMDGOALS)" "release"
-# Default optimization level for "release" builds (make release)
-MXC_OPTIMIZE_CFLAGS ?= -O2
-DEBUG = 0
-endif
-
-ifeq ($(DEBUG),1)
-# Optimizes for debugging as recommended
-# by GNU for code-edit-debug cycles
-# https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html#Optimize-Options
-MXC_OPTIMIZE_CFLAGS := -Og
-endif
-
-# Default level if not building for release or explicitly for debug
-MXC_OPTIMIZE_CFLAGS ?= -Og
-
-# Set compiler flags
-PROJ_CFLAGS += -Wall # Enable warnings
-PROJ_CFLAGS += -DMXC_ASSERT_ENABLE
-
-# Set hardware floating point acceleration.
-# Options are:
-# - hard
-# - soft
-# - softfp (default if MFLOAT_ABI is not set)
-MFLOAT_ABI ?= softfp
-# MFLOAT_ABI must be exported to other Makefiles
-export MFLOAT_ABI
-
-# This path contains system-level intialization files for the target micro. Add to the build.
-VPATH += $(CMSIS_ROOT)/Device/Maxim/$(TARGET_UC)/Source
-
-# *******************************************************************************
-# Secure Boot Tools (SBT)
-
-# This section integrates the Secure Boot Tools. It's intended for use with
-# microcontrollers that have a secure bootloader.
-
-# Enabling SBT integration will add some special rules, such as "make sla", "make scpa", etc.
-
-# Configuration variables:
-# SBT : Toggle SBT integration. Set to 1 to enable, or 0
-# to disable
-# MAXIM_SBT_DIR : Specify the location of the SBT tool binaries. This defaults to
-# Tools/SBT in the MaximSDK. The standalone SBT installer will override
-# this via an environment variable.
-# TARGET_SEC : Specify the part number to be passed into the SBT. This should match
-# the secure variant part #. The default value will depend on TARGET.
-# For example, TARGET=MAX32650 will result in TARGET_SEC=MAX32651, and
-# the default selection happens in Tools/SBT/SBT-config.
-# However, if there are multiple secure part #s for the target
-# microcontroller this variable may need to be changed.
-
-SBT ?= 0
-ifeq ($(SBT), 1)
-MAXIM_SBT_DIR ?= $(MAXIM_PATH)/Tools/SBT
-MAXIM_SBT_DIR := $(subst \,/,$(MAXIM_SBT_DIR))
-# ^ Must sanitize path for \ on Windows, since this may come from an environment
-# variable.
-
-export MAXIM_SBT_DIR # SBTs must have this environment variable defined to work
-
-# SBT-config.mk and SBT-rules.mk are included further down this Makefile.
-
-endif # SBT
-
-# *******************************************************************************
-# Default goal selection. This section allows you to override the default goal
-# that will run if no targets are specified on the command-line.
-# (ie. just running 'make' instead of 'make all')
-
-# Configuration variables:
-# .DEFAULT_GOAL : Set the default goal if no targets were specified on the
-# command-line
-# ** "override" must be used with this variable. **
-# Ex: "override .DEFAULT_GOAL = mygoal"
-
-ifeq "$(.DEFAULT_GOAL)" ""
-ifeq ($(SBT),1)
-override .DEFAULT_GOAL := sla
-else
-override .DEFAULT_GOAL := all
-endif
-endif
-
-# Developer note: 'override' is used above for legacy Makefile compatibility.
-# gcc.mk/gcc_riscv.mk need to hard-set 'all' internally, so this new system
-# uses 'override' to come in over the top without breaking old projects.
-
-# It's also necessary to explicitly set MAKECMDGOALS...
-ifeq "$(MAKECMDGOALS)" ""
-MAKECMDGOALS:=$(.DEFAULT_GOAL)
-endif
-
-# Enable colors when --sync-output is used.
-# See https://www.gnu.org/software/make/manual/make.html#Terminal-Output (section 13.2)
-ifneq ($(MAKE_TERMOUT),)
-PROJ_CFLAGS += -fdiagnostics-color=always
-endif
-
-ifneq ($(FORCE_COLOR),)
-PROJ_CFLAGS += -fdiagnostics-color=always
-endif
-
-# *******************************************************************************
-# Include SBT config. We need to do this here because it needs to know
-# the current MAKECMDGOAL.
-ifeq ($(SBT),1)
-include $(MAXIM_PATH)/Tools/SBT/SBT-config.mk
-endif
-
-# *******************************************************************************
-# Libraries
-
-# This section offers "toggle switches" to include or exclude the libraries that
-# are available in the MaximSDK. Set a configuration variable to 1 to include the
-# library in the build, or 0 to exclude.
-
-# Each library may also have its own library specific configuration variables. See
-# Libraries/libs.mk for more details.
-
-# Configuration variables:
-# - LIB_BOARD : Include the Board-Support Package (BSP) library. (Enabled by default)
-# - LIB_PERIPHDRIVERS : Include the peripheral driver library. (Enabled by default)
-# - LIB_CMSIS_DSP : Include the CMSIS-DSP library.
-# - LIB_CORDIO : Include the Cordio BLE library
-# - LIB_FCL : Include the Free Cryptographic Library (FCL)
-# - LIB_FREERTOS : Include the FreeRTOS and FreeRTOS-Plus-CLI libraries
-# - LIB_LC3 : Include the Low Complexity Communication Codec (LC3) library
-# - LIB_LITTLEFS : Include the "little file system" (littleFS) library
-# - LIB_LWIP : Include the lwIP library
-# - LIB_MAXUSB : Include the MAXUSB library
-# - LIB_SDHC : Include the SDHC library
-
-include $(LIBS_DIR)/libs.mk
-
-
-# *******************************************************************************
-# Rules
-
-# Include the rules for building for this target. All other makefiles should be
-# included before this one.
-include $(CMSIS_ROOT)/Device/Maxim/$(TARGET_UC)/Source/$(COMPILER)/$(TARGET_LC).mk
-
-# Include the rules that integrate the SBTs. SBTs are a special case that must be
-# include after the core gcc rules to extend them.
-ifeq ($(SBT), 1)
-include $(MAXIM_PATH)/Tools/SBT/SBT-rules.mk
-endif
-
-
-# Get .DEFAULT_GOAL working.
-ifeq "$(MAKECMDGOALS)" ""
-MAKECMDGOALS:=$(.DEFAULT_GOAL)
-endif
-
-
-all:
-# Extend the functionality of the "all" recipe here
- arm-none-eabi-size --format=berkeley $(BUILD_DIR)/$(PROJECT).elf
-
-libclean:
- $(MAKE) -f ${PERIPH_DRIVER_DIR}/periphdriver.mk clean.periph
-
-clean:
-# Extend the functionality of the "clean" recipe here
-
-# The rule to clean out all the build products.
-distclean: clean libclean
diff --git a/Examples/MAX32655/I2S_Playback/README.md b/Examples/MAX32655/I2S_Playback/README.md
deleted file mode 100644
index b0541d8943..0000000000
--- a/Examples/MAX32655/I2S_Playback/README.md
+++ /dev/null
@@ -1,62 +0,0 @@
-## Description
-
-This example demonstrates the capabilities of the I2S peripheral. This example demonstrates how to record audio from the on-board digital microphone and play the recorded audio back out through the headphone jack.
-
-Once the green LED is illiuminated the system is ready to begin recording. Recording will start when button SW3 is pressed and will continue until the button is released or the external memory is full.
-
-After the recording has finished the audio will begin playing after a 3 second delay.
-
-## Software
-
-### Project Usage
-
-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/)**.
-
-### Project-Specific Build Notes
-
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
-
-## Required Connections
-
-If using the Standard EV Kit (EvKit\_V1):
-- Connect a USB cable between the PC and the CN1 (USB/PWR) connector.
-- Connect pins JP4(RX_SEL) and JP5(TX_SEL) to RX0 and TX0 header.
-- Open an terminal application on the PC and connect to the EV kit's console UART at 115200, 8-N-1.
-- Close jumper JP2 (LED0 EN).
-- Close jumper JP3 (LED1 EN).
-- Plug in headphones to the headphone jack (connector J3).
-
-If using the Featherboard (FTHR\_Apps\_P1):
-- Connect a USB cable between the PC and the J4 (USB/PWR) connector.
-- Open an terminal application on the PC and connect to the board's console UART at 115200, 8-N-1.
-- Plug in headphones to the headphone jack (connector J2).
-
-## Expected Output
-
-```
-******************* I2S Record/Playback Example *******************
-
-This example demonstrates how to record audio from the on-board
-digital microphone and play the recorded audio back out through
-the headphone jack.
-
-Once the green LED is illiuminated the system is ready to begin
-recording. Recording will start when button SW3 is pressed and will
-continue until the button is released or the external memory is
-full.
-
-After the recording has finished the audio will begin playing after
-a 3 second delay.
-
-Erasing external flash. This will take a moment...
-Erase complete.
-
-Press and hold SW3 to start recording.
-
-Recording started.
-Recording ended.
-
-Playback starting.
-Playback ended.
-```
-
diff --git a/Examples/MAX32655/I2S_Playback/main.c b/Examples/MAX32655/I2S_Playback/main.c
deleted file mode 100644
index a9f6fb1e42..0000000000
--- a/Examples/MAX32655/I2S_Playback/main.c
+++ /dev/null
@@ -1,263 +0,0 @@
-/**
- * @file main.c
- * @brief I2S Transmitter Example
- * @details
- * @note
- */
-
-/******************************************************************************
- *
- * Copyright (C) 2022-2023 Maxim Integrated Products, Inc. All Rights Reserved.
- * (now owned by Analog Devices, Inc.),
- * Copyright (C) 2023 Analog Devices, Inc. All Rights Reserved. This software
- * is proprietary to Analog Devices, Inc. and its licensors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- ******************************************************************************/
-
-/***** Includes *****/
-#include
-#include
-#include
-#include
-#include
-
-#include "board.h"
-#include "dma.h"
-#include "i2s.h"
-#include "icc.h"
-#include "led.h"
-#include "max9867.h"
-#include "mxc_delay.h"
-#include "mxc_device.h"
-#include "mxc_sys.h"
-#include "nvic_table.h"
-#include "pb.h"
-#include "Ext_Flash.h"
-
-/***** Definitions *****/
-#if defined(BOARD_FTHR_APPS_P1)
-#define I2C_MASTER MXC_I2C1 // SCL P0_16; SDA P0_17
-#define CONNECT_NUM 2
-#else
-#define I2C_MASTER MXC_I2C2 // SCL P0_30; SDA P0_31
-#define CONNECT_NUM 3
-#endif
-
-#define BUF_SIZE 16000
-#define SMPL_RATE 48000
-#define BUF_SEL(CUR_BUF, BUF1, BUF2) ((CUR_BUF == BUF1) ? BUF2 : BUF1)
-
-/***** Global Data *****/
-Ext_Flash_Unblk_t free_flash;
-mxc_i2s_req_t i2s_req;
-volatile uint8_t i2s_done = 0;
-int16_t buf0[BUF_SIZE];
-int16_t buf1[BUF_SIZE];
-
-/*****************************************************************/
-void i2s_dma_cb(int handle, int error)
-{
- i2s_done = 1;
-}
-
-/*****************************************************************/
-void DMA_IRQHandler(void)
-{
- MXC_DMA_Handler();
-}
-
-/*****************************************************************/
-int i2s_init(void)
-{
- int err = E_NO_ERROR;
-
- i2s_req.wordSize = MXC_I2S_WSIZE_HALFWORD; // Configure I2S interface parameters
- i2s_req.sampleSize = MXC_I2S_SAMPLESIZE_SIXTEEN;
- i2s_req.bitsWord = 16;
- i2s_req.adjust = MXC_I2S_ADJUST_LEFT;
- i2s_req.justify = MXC_I2S_LSB_JUSTIFY;
- i2s_req.wsPolarity = MXC_I2S_POL_NORMAL;
- i2s_req.channelMode = MXC_I2S_EXTERNAL_SCK_EXTERNAL_WS; // BLCK & LRCLK generated by codec
- i2s_req.stereoMode = MXC_I2S_MONO_RIGHT_CH; // Receive only right channel data from codec.
- i2s_req.bitOrder = MXC_I2S_LSB_FIRST;
- i2s_req.clkdiv = MXC_I2S_CalculateClockDiv(SMPL_RATE, i2s_req.wordSize) + 1;
- i2s_req.rawData = NULL;
- i2s_req.txData = NULL;
- i2s_req.rxData = buf0;
- i2s_req.length = sizeof(buf0);
-
- err = MXC_I2S_Init(&i2s_req); // Initialize I2S
- if (err != E_NO_ERROR) {
- return err;
- }
-
- MXC_I2S_RegisterDMACallback(i2s_dma_cb);
- MXC_NVIC_SetVector(DMA0_IRQn, DMA_IRQHandler);
-
- return err;
-}
-
-/*****************************************************************/
-int ext_flash_init(void)
-{
- int err;
-
- err = Ext_Flash_Init();
- if (err != E_NO_ERROR) {
- return err;
- }
-
- printf("\nErasing external flash. This will take a moment...\n");
- err = Ext_Flash_Bulk_Erase();
- if (err == E_NO_ERROR) {
- printf("Erase complete.\n");
- } else {
- printf("Erase failed with error: %d", err);
- }
-
- Ext_Flash_Quad(1);
-
- return err;
-}
-
-/*****************************************************************/
-uint32_t record_audio(void)
-{
- void *flash_buf = buf0;
- void *i2s_buf = buf0;
-
- uint32_t flash_addr = free_flash.start_addr;
-
- i2s_done = 0;
- MXC_DMA_ReleaseChannel(0);
- LED_On(0);
- MXC_I2S_RXDMAConfig(i2s_buf, sizeof(buf0)); // Start collecting first set of I2S samples
-
- while (PB_Get(0) && flash_addr < free_flash.end_addr) {
- while (!i2s_done) {}
- // Wait for I2S transaction to finish
-
- flash_buf = i2s_buf;
- i2s_buf = BUF_SEL(i2s_buf, buf0, buf1); // Select sample buffer
-
- i2s_done = 0; // Receive next set of audio samples
- MXC_DMA_ReleaseChannel(0);
- MXC_I2S_RXDMAConfig(i2s_buf, sizeof(buf0));
-
- Ext_Flash_Program_Page(flash_addr, (uint8_t *)flash_buf, sizeof(buf0),
- Ext_Flash_DataLine_Quad); // Store received audio samples
- flash_addr += sizeof(buf0);
- }
- LED_Off(0);
-
- return flash_addr; // Return flash address where the recording ended
-}
-
-/*****************************************************************/
-void playback_audio(uint32_t eor_addr)
-{
- void *flash_buf = buf0;
- void *i2s_buf = buf0;
-
- LED_Off(0);
- LED_On(1);
-
- Ext_Flash_Read(free_flash.start_addr, (uint8_t *)flash_buf, sizeof(buf0),
- Ext_Flash_DataLine_Quad); // Get first set of audio samples
-
- for (int i = free_flash.start_addr; i < eor_addr; i += sizeof(buf0)) {
- LED_Toggle(0);
- LED_Toggle(1);
-
- i2s_buf = flash_buf;
-
- i2s_done = 0; // Start transmission of audio samples
- MXC_DMA_ReleaseChannel(0);
- MXC_I2S_TXDMAConfig(i2s_buf, sizeof(buf0));
-
- flash_buf = BUF_SEL(flash_buf, buf0, buf1); // Get next set of audio samples
- Ext_Flash_Read(i, (uint8_t *)flash_buf, sizeof(buf0), Ext_Flash_DataLine_Quad);
-
- while (!i2s_done) {}
- }
-
- LED_Off(0);
- LED_Off(1);
-}
-
-/*****************************************************************/
-int main()
-{
- int err;
- uint32_t eor_addr;
-
- MXC_ICC_Enable(MXC_ICC0); // Enable cache
-
- MXC_SYS_Clock_Select(MXC_SYS_CLOCK_IPO); // Set system clock to 100 MHz
- SystemCoreClockUpdate();
-
- printf("\n******************* I2S Record/Playback Example *******************\n");
-
- printf("\nThis example demonstrates how to record audio from the on-board\n");
- printf("digital microphone and play the recorded audio back out through\n");
- printf("the headphone jack.\n");
-
- printf("\nOnce the green LED is illiuminated the system is ready to begin\n");
- printf("recording. Recording will start when button SW3 is pressed and will\n");
- printf("continue until the button is released or the external memory is\n");
- printf("full.\n");
-
- printf("\nAfter the recording has finished the audio will begin playing after\n");
- printf("a 3 second delay.\n");
-
- err = i2s_init(); // Initialize I2S interface
- if (err != E_NO_ERROR) {
- printf("Error configuring Audio Codec I2S interface.\n");
- while (1) {}
- }
-
- err = max9867_init(I2C_MASTER, 12288000, SMPL_RATE); // Initialize audio codec
- if (err != E_NO_ERROR) {
- printf("Error configuring audio codec: %i", err);
- while (1) {}
- }
-
- err = ext_flash_init(); // Initialize external flash chip used to store audio samples
- if (err != E_NO_ERROR) {
- printf("Error initializing external flash.\n");
- while (1) {}
- }
- free_flash = Ext_Flash_GetAvailableFlash();
-
- printf("\nPress and hold SW3 to start recording.\n");
- LED_On(1);
- while (!PB_Get(0)) {}
- // Wait for button press
- MXC_Delay(MXC_DELAY_MSEC(500)); // Button debounce
-
- printf("\nRecording started.\n");
- eor_addr = record_audio(); // Record audio samples
- printf("Recording ended.\n");
-
- MXC_Delay(MXC_DELAY_SEC(5));
-
- printf("\nPlayback starting.\n");
- playback_audio(eor_addr); // Playback audio recording
- printf("Playback ended.\n");
-
- MXC_I2S_Shutdown();
-
- return E_NO_ERROR;
-}
diff --git a/Examples/MAX32655/I2S_Playback/project.mk b/Examples/MAX32655/I2S_Playback/project.mk
deleted file mode 100644
index f068448db8..0000000000
--- a/Examples/MAX32655/I2S_Playback/project.mk
+++ /dev/null
@@ -1,10 +0,0 @@
-# This file can be used to set build configuration
-# variables. These variables are defined in a file called
-# "Makefile" that is located next to this one.
-
-# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
-
-# **********************************************************
-
-# Add your config here!
diff --git a/Examples/MAX32655/ICC/.vscode/README.md b/Examples/MAX32655/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/ICC/.vscode/README.md
+++ b/Examples/MAX32655/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/ICC/.vscode/settings.json b/Examples/MAX32655/ICC/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/ICC/.vscode/settings.json
+++ b/Examples/MAX32655/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/ICC/Makefile b/Examples/MAX32655/ICC/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/ICC/Makefile
+++ b/Examples/MAX32655/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/ICC/README.md b/Examples/MAX32655/ICC/README.md
index 7d3a419934..9c26c4e13d 100644
--- a/Examples/MAX32655/ICC/README.md
+++ b/Examples/MAX32655/ICC/README.md
@@ -12,11 +12,11 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX32655/ICC/project.mk b/Examples/MAX32655/ICC/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/ICC/project.mk
+++ b/Examples/MAX32655/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/LP/.vscode/README.md b/Examples/MAX32655/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/LP/.vscode/README.md
+++ b/Examples/MAX32655/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/LP/.vscode/settings.json b/Examples/MAX32655/LP/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/LP/.vscode/settings.json
+++ b/Examples/MAX32655/LP/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/LP/Makefile b/Examples/MAX32655/LP/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/LP/Makefile
+++ b/Examples/MAX32655/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/LP/README.md b/Examples/MAX32655/LP/README.md
index 9da0670dee..ce15335d66 100644
--- a/Examples/MAX32655/LP/README.md
+++ b/Examples/MAX32655/LP/README.md
@@ -10,11 +10,11 @@ Users may also select whether they want to use a GPIO or RTC wakeup source. To u
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/LP/project.mk b/Examples/MAX32655/LP/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/LP/project.mk
+++ b/Examples/MAX32655/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/LPCMP/.vscode/README.md b/Examples/MAX32655/LPCMP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/LPCMP/.vscode/README.md
+++ b/Examples/MAX32655/LPCMP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/LPCMP/.vscode/settings.json b/Examples/MAX32655/LPCMP/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/LPCMP/.vscode/settings.json
+++ b/Examples/MAX32655/LPCMP/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/LPCMP/Makefile b/Examples/MAX32655/LPCMP/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/LPCMP/Makefile
+++ b/Examples/MAX32655/LPCMP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/LPCMP/README.md b/Examples/MAX32655/LPCMP/README.md
index fef877dfd5..49e19e8d79 100644
--- a/Examples/MAX32655/LPCMP/README.md
+++ b/Examples/MAX32655/LPCMP/README.md
@@ -9,11 +9,11 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/LPCMP/project.mk b/Examples/MAX32655/LPCMP/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/LPCMP/project.mk
+++ b/Examples/MAX32655/LPCMP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Library_Generate/.vscode/README.md b/Examples/MAX32655/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32655/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32655/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32655/Library_Generate/Makefile b/Examples/MAX32655/Library_Generate/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/Library_Generate/Makefile
+++ b/Examples/MAX32655/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Library_Generate/README.md b/Examples/MAX32655/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32655/Library_Generate/README.md
+++ b/Examples/MAX32655/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/Library_Generate/project.mk b/Examples/MAX32655/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32655/Library_Generate/project.mk
+++ b/Examples/MAX32655/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Library_Use/.vscode/README.md b/Examples/MAX32655/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Library_Use/.vscode/README.md
+++ b/Examples/MAX32655/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Library_Use/.vscode/settings.json b/Examples/MAX32655/Library_Use/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32655/Library_Use/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/Library_Use/Makefile b/Examples/MAX32655/Library_Use/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/Library_Use/Makefile
+++ b/Examples/MAX32655/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Library_Use/README.md b/Examples/MAX32655/Library_Use/README.md
index 3a3fb5ea14..bddc601d8c 100644
--- a/Examples/MAX32655/Library_Use/README.md
+++ b/Examples/MAX32655/Library_Use/README.md
@@ -9,11 +9,11 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-This example supports all available MAX32655 evaluation platforms but comes _pre-configured_ for the MAX32655EVKIT by default. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
+This example supports all available MAX32655 evaluation platforms but comes _pre-configured_ for the MAX32655EVKIT by default. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
## Required Connections
diff --git a/Examples/MAX32655/Library_Use/project.mk b/Examples/MAX32655/Library_Use/project.mk
index 972fa6942d..697d6809f8 100644
--- a/Examples/MAX32655/Library_Use/project.mk
+++ b/Examples/MAX32655/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Pulse_Train/.vscode/README.md b/Examples/MAX32655/Pulse_Train/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Pulse_Train/.vscode/README.md
+++ b/Examples/MAX32655/Pulse_Train/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Pulse_Train/.vscode/settings.json b/Examples/MAX32655/Pulse_Train/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/Pulse_Train/.vscode/settings.json
+++ b/Examples/MAX32655/Pulse_Train/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/Pulse_Train/Makefile b/Examples/MAX32655/Pulse_Train/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/Pulse_Train/Makefile
+++ b/Examples/MAX32655/Pulse_Train/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Pulse_Train/README.md b/Examples/MAX32655/Pulse_Train/README.md
index 233ce5dc32..02c7c5e0bf 100644
--- a/Examples/MAX32655/Pulse_Train/README.md
+++ b/Examples/MAX32655/Pulse_Train/README.md
@@ -19,11 +19,11 @@ On the Featherboard:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/Pulse_Train/project.mk b/Examples/MAX32655/Pulse_Train/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/Pulse_Train/project.mk
+++ b/Examples/MAX32655/Pulse_Train/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/RTC/.vscode/README.md b/Examples/MAX32655/RTC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/RTC/.vscode/README.md
+++ b/Examples/MAX32655/RTC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/RTC/.vscode/settings.json b/Examples/MAX32655/RTC/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/RTC/.vscode/settings.json
+++ b/Examples/MAX32655/RTC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/RTC/Makefile b/Examples/MAX32655/RTC/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/RTC/Makefile
+++ b/Examples/MAX32655/RTC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/RTC/README.md b/Examples/MAX32655/RTC/README.md
index f5c7a5e90d..29b3cea2ef 100644
--- a/Examples/MAX32655/RTC/README.md
+++ b/Examples/MAX32655/RTC/README.md
@@ -25,11 +25,11 @@ On the Featherboard:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/RTC/project.mk b/Examples/MAX32655/RTC/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/RTC/project.mk
+++ b/Examples/MAX32655/RTC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/RTC_Backup/.vscode/README.md b/Examples/MAX32655/RTC_Backup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/RTC_Backup/.vscode/README.md
+++ b/Examples/MAX32655/RTC_Backup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/RTC_Backup/.vscode/settings.json b/Examples/MAX32655/RTC_Backup/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/RTC_Backup/.vscode/settings.json
+++ b/Examples/MAX32655/RTC_Backup/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/RTC_Backup/Makefile b/Examples/MAX32655/RTC_Backup/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/RTC_Backup/Makefile
+++ b/Examples/MAX32655/RTC_Backup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/RTC_Backup/README.md b/Examples/MAX32655/RTC_Backup/README.md
index 95f85b696c..9391e702b1 100644
--- a/Examples/MAX32655/RTC_Backup/README.md
+++ b/Examples/MAX32655/RTC_Backup/README.md
@@ -8,11 +8,11 @@ The RTC time-of-day alarm is used to wake the device from backup mode every TIME
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/RTC_Backup/project.mk b/Examples/MAX32655/RTC_Backup/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/RTC_Backup/project.mk
+++ b/Examples/MAX32655/RTC_Backup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/RV_ARM_Loader/.vscode/README.md b/Examples/MAX32655/RV_ARM_Loader/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/RV_ARM_Loader/.vscode/README.md
+++ b/Examples/MAX32655/RV_ARM_Loader/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/RV_ARM_Loader/.vscode/settings.json b/Examples/MAX32655/RV_ARM_Loader/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/RV_ARM_Loader/.vscode/settings.json
+++ b/Examples/MAX32655/RV_ARM_Loader/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/RV_ARM_Loader/Makefile b/Examples/MAX32655/RV_ARM_Loader/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/RV_ARM_Loader/Makefile
+++ b/Examples/MAX32655/RV_ARM_Loader/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/RV_ARM_Loader/README.md b/Examples/MAX32655/RV_ARM_Loader/README.md
index 75bf444cc2..68a1e5f2d0 100644
--- a/Examples/MAX32655/RV_ARM_Loader/README.md
+++ b/Examples/MAX32655/RV_ARM_Loader/README.md
@@ -8,7 +8,7 @@ RV_ARM_Loader runs on the ARM core to load the RISCV code space, setup the RISCV
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/RV_ARM_Loader/project.mk b/Examples/MAX32655/RV_ARM_Loader/project.mk
index 5e621347c3..08efab2773 100644
--- a/Examples/MAX32655/RV_ARM_Loader/project.mk
+++ b/Examples/MAX32655/RV_ARM_Loader/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/SPI/.vscode/README.md b/Examples/MAX32655/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/SPI/.vscode/README.md
+++ b/Examples/MAX32655/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/SPI/.vscode/settings.json b/Examples/MAX32655/SPI/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/SPI/.vscode/settings.json
+++ b/Examples/MAX32655/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/SPI/Makefile b/Examples/MAX32655/SPI/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/SPI/Makefile
+++ b/Examples/MAX32655/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/SPI/README.md b/Examples/MAX32655/SPI/README.md
index eec70e5450..98aecc94cc 100644
--- a/Examples/MAX32655/SPI/README.md
+++ b/Examples/MAX32655/SPI/README.md
@@ -12,11 +12,11 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/SPI/project.mk b/Examples/MAX32655/SPI/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/SPI/project.mk
+++ b/Examples/MAX32655/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/TFT_Demo/.vscode/README.md b/Examples/MAX32655/TFT_Demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/TFT_Demo/.vscode/README.md
+++ b/Examples/MAX32655/TFT_Demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/TFT_Demo/.vscode/settings.json b/Examples/MAX32655/TFT_Demo/.vscode/settings.json
index 1f527b25e0..1faa9a80b8 100755
--- a/Examples/MAX32655/TFT_Demo/.vscode/settings.json
+++ b/Examples/MAX32655/TFT_Demo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/Core/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include/dsp",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/TFT_Demo/Makefile b/Examples/MAX32655/TFT_Demo/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/TFT_Demo/Makefile
+++ b/Examples/MAX32655/TFT_Demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/TFT_Demo/README.md b/Examples/MAX32655/TFT_Demo/README.md
index afe83db831..e8484e593c 100644
--- a/Examples/MAX32655/TFT_Demo/README.md
+++ b/Examples/MAX32655/TFT_Demo/README.md
@@ -6,7 +6,7 @@ This examples demonstrates the use of the TFT display and the touchscreen contro
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/TFT_Demo/project.mk b/Examples/MAX32655/TFT_Demo/project.mk
index 64218c80f0..c74e85066c 100644
--- a/Examples/MAX32655/TFT_Demo/project.mk
+++ b/Examples/MAX32655/TFT_Demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/TMR/.vscode/README.md b/Examples/MAX32655/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/TMR/.vscode/README.md
+++ b/Examples/MAX32655/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/TMR/.vscode/settings.json b/Examples/MAX32655/TMR/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/TMR/.vscode/settings.json
+++ b/Examples/MAX32655/TMR/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/TMR/Makefile b/Examples/MAX32655/TMR/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/TMR/Makefile
+++ b/Examples/MAX32655/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/TMR/README.md b/Examples/MAX32655/TMR/README.md
index 88e0b69c56..5158abdc4b 100644
--- a/Examples/MAX32655/TMR/README.md
+++ b/Examples/MAX32655/TMR/README.md
@@ -25,11 +25,11 @@ On the Featherboard:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/TMR/project.mk b/Examples/MAX32655/TMR/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/TMR/project.mk
+++ b/Examples/MAX32655/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/TRNG/.vscode/README.md b/Examples/MAX32655/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/TRNG/.vscode/README.md
+++ b/Examples/MAX32655/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/TRNG/.vscode/settings.json b/Examples/MAX32655/TRNG/.vscode/settings.json
index 9cca2e3614..e708e36056 100755
--- a/Examples/MAX32655/TRNG/.vscode/settings.json
+++ b/Examples/MAX32655/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32655/TRNG/Makefile b/Examples/MAX32655/TRNG/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/TRNG/Makefile
+++ b/Examples/MAX32655/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/TRNG/README.md b/Examples/MAX32655/TRNG/README.md
index 426123d154..e5e0660e10 100644
--- a/Examples/MAX32655/TRNG/README.md
+++ b/Examples/MAX32655/TRNG/README.md
@@ -6,11 +6,11 @@ The true random number generator (TRNG) hardware is exercised in this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/TRNG/project.mk b/Examples/MAX32655/TRNG/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/TRNG/project.mk
+++ b/Examples/MAX32655/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Temp_Monitor/.vscode/README.md b/Examples/MAX32655/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX32655/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Temp_Monitor/.vscode/settings.json b/Examples/MAX32655/Temp_Monitor/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX32655/Temp_Monitor/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/Temp_Monitor/Makefile b/Examples/MAX32655/Temp_Monitor/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/Temp_Monitor/Makefile
+++ b/Examples/MAX32655/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Temp_Monitor/README.md b/Examples/MAX32655/Temp_Monitor/README.md
index 469846087a..f2847a4e0a 100644
--- a/Examples/MAX32655/Temp_Monitor/README.md
+++ b/Examples/MAX32655/Temp_Monitor/README.md
@@ -16,7 +16,7 @@ NOTE: This example is only supported by the MAX32655EVKIT.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/Temp_Monitor/project.mk b/Examples/MAX32655/Temp_Monitor/project.mk
index 80ad8443fb..b26b07b395 100644
--- a/Examples/MAX32655/Temp_Monitor/project.mk
+++ b/Examples/MAX32655/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
@@ -11,7 +11,7 @@
# This example is only compatible with the MAX32655EVKIT
ifneq ($(BOARD),EvKit_V1)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages))
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages))
endif
# Include MAX31889 drivers from MiscDrivers library.
diff --git a/Examples/MAX32655/UART/.vscode/README.md b/Examples/MAX32655/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/UART/.vscode/README.md
+++ b/Examples/MAX32655/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/UART/.vscode/settings.json b/Examples/MAX32655/UART/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/UART/.vscode/settings.json
+++ b/Examples/MAX32655/UART/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/UART/Makefile b/Examples/MAX32655/UART/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/UART/Makefile
+++ b/Examples/MAX32655/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/UART/README.md b/Examples/MAX32655/UART/README.md
index ae29bca343..88a37838e2 100644
--- a/Examples/MAX32655/UART/README.md
+++ b/Examples/MAX32655/UART/README.md
@@ -6,7 +6,7 @@ This application uses two serial ports to send and receive data. One serial por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32655/UART/project.mk b/Examples/MAX32655/UART/project.mk
index 84a00ef404..15632b4955 100644
--- a/Examples/MAX32655/UART/project.mk
+++ b/Examples/MAX32655/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
@@ -11,5 +11,5 @@
# This example is only compatible with the MAX32655EVKIT
ifneq ($(BOARD),EvKit_V1)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages))
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX32655EVKIT. (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages))
endif
diff --git a/Examples/MAX32655/UCL/README.md b/Examples/MAX32655/UCL/README.md
index 27606965cb..eb15cec4ad 100644
--- a/Examples/MAX32655/UCL/README.md
+++ b/Examples/MAX32655/UCL/README.md
@@ -9,11 +9,11 @@ TODO:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
### Required Connections
If using the Standard EV Kit (EvKit\_V1):
diff --git a/Examples/MAX32655/UCL/project.mk b/Examples/MAX32655/UCL/project.mk
index e0e2eca905..62c6aa45bf 100644
--- a/Examples/MAX32655/UCL/project.mk
+++ b/Examples/MAX32655/UCL/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/WUT/.vscode/README.md b/Examples/MAX32655/WUT/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/WUT/.vscode/README.md
+++ b/Examples/MAX32655/WUT/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/WUT/.vscode/settings.json b/Examples/MAX32655/WUT/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/WUT/.vscode/settings.json
+++ b/Examples/MAX32655/WUT/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/WUT/Makefile b/Examples/MAX32655/WUT/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/WUT/Makefile
+++ b/Examples/MAX32655/WUT/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/WUT/README.md b/Examples/MAX32655/WUT/README.md
index d166ab4bf5..8cbb1a461b 100644
--- a/Examples/MAX32655/WUT/README.md
+++ b/Examples/MAX32655/WUT/README.md
@@ -11,11 +11,11 @@ On the MAX32655FTHR:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/WUT/project.mk b/Examples/MAX32655/WUT/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/WUT/project.mk
+++ b/Examples/MAX32655/WUT/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/Watchdog/.vscode/README.md b/Examples/MAX32655/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/Watchdog/.vscode/README.md
+++ b/Examples/MAX32655/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/Watchdog/.vscode/settings.json b/Examples/MAX32655/Watchdog/.vscode/settings.json
index 407c2b61a6..0871386336 100755
--- a/Examples/MAX32655/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32655/Watchdog/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32655/Watchdog/Makefile b/Examples/MAX32655/Watchdog/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/Watchdog/Makefile
+++ b/Examples/MAX32655/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/Watchdog/README.md b/Examples/MAX32655/Watchdog/README.md
index b701df7cfb..cdbe95efe7 100644
--- a/Examples/MAX32655/Watchdog/README.md
+++ b/Examples/MAX32655/Watchdog/README.md
@@ -20,11 +20,11 @@ On the Featherboard:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
If using the MAX32655EVKIT (EvKit\_V1):
diff --git a/Examples/MAX32655/Watchdog/project.mk b/Examples/MAX32655/Watchdog/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32655/Watchdog/project.mk
+++ b/Examples/MAX32655/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32655/WearLeveling/.vscode/README.md b/Examples/MAX32655/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32655/WearLeveling/.vscode/README.md
+++ b/Examples/MAX32655/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32655/WearLeveling/.vscode/settings.json b/Examples/MAX32655/WearLeveling/.vscode/settings.json
index f4903687fd..66de4b18dd 100755
--- a/Examples/MAX32655/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX32655/WearLeveling/.vscode/settings.json
@@ -48,13 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/CLI/inc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/littlefs",
@@ -67,6 +67,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -74,7 +75,6 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/CLI/src",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/littlefs",
diff --git a/Examples/MAX32655/WearLeveling/Makefile b/Examples/MAX32655/WearLeveling/Makefile
index 11c18297c6..a6c275d93a 100644
--- a/Examples/MAX32655/WearLeveling/Makefile
+++ b/Examples/MAX32655/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32655/WearLeveling/README.md b/Examples/MAX32655/WearLeveling/README.md
index 204bb9638b..b71daa22ea 100644
--- a/Examples/MAX32655/WearLeveling/README.md
+++ b/Examples/MAX32655/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32655/WearLeveling/project.mk b/Examples/MAX32655/WearLeveling/project.mk
index 225e7d5ae4..68501672c8 100644
--- a/Examples/MAX32655/WearLeveling/project.mk
+++ b/Examples/MAX32655/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32660/ARM-DSP/README.md b/Examples/MAX32660/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32660/ARM-DSP/README.md
+++ b/Examples/MAX32660/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_bayes_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_bayes_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_convolution_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_convolution_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_fir_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_fir_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_matrix_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_matrix_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_svm_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_svm_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/settings.json
index 4cb2019dc0..eae4ae3c80 100755
--- a/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32660/ARM-DSP/arm_variance_example/Makefile
index afdd31d0d0..bf8b51a36d 100644
--- a/Examples/MAX32660/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32660/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX32660/ARM-DSP/arm_variance_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32660/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX32660/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/Bootloader_Host/.vscode/README.md b/Examples/MAX32660/Bootloader_Host/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/Bootloader_Host/.vscode/README.md
+++ b/Examples/MAX32660/Bootloader_Host/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/Bootloader_Host/.vscode/settings.json b/Examples/MAX32660/Bootloader_Host/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/Bootloader_Host/.vscode/settings.json
+++ b/Examples/MAX32660/Bootloader_Host/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/Bootloader_Host/Makefile b/Examples/MAX32660/Bootloader_Host/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Bootloader_Host/Makefile
+++ b/Examples/MAX32660/Bootloader_Host/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Bootloader_Host/README.md b/Examples/MAX32660/Bootloader_Host/README.md
index 84f4528ee9..4595e770e1 100644
--- a/Examples/MAX32660/Bootloader_Host/README.md
+++ b/Examples/MAX32660/Bootloader_Host/README.md
@@ -23,7 +23,7 @@ flash based bootloader. It is designed to easily be ported on any micro.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/Bootloader_Host/project.mk b/Examples/MAX32660/Bootloader_Host/project.mk
index 5d2ce57cef..fbdf6f4984 100644
--- a/Examples/MAX32660/Bootloader_Host/project.mk
+++ b/Examples/MAX32660/Bootloader_Host/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/Coremark/.vscode/README.md b/Examples/MAX32660/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/Coremark/.vscode/README.md
+++ b/Examples/MAX32660/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/Coremark/.vscode/settings.json b/Examples/MAX32660/Coremark/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/Coremark/.vscode/settings.json
+++ b/Examples/MAX32660/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/Coremark/Makefile b/Examples/MAX32660/Coremark/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Coremark/Makefile
+++ b/Examples/MAX32660/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Coremark/README.md b/Examples/MAX32660/Coremark/README.md
index aceabdf618..64f8d0bbe5 100644
--- a/Examples/MAX32660/Coremark/README.md
+++ b/Examples/MAX32660/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/Coremark/project.mk b/Examples/MAX32660/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32660/Coremark/project.mk
+++ b/Examples/MAX32660/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32660/DMA/.vscode/README.md b/Examples/MAX32660/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/DMA/.vscode/README.md
+++ b/Examples/MAX32660/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/DMA/.vscode/settings.json b/Examples/MAX32660/DMA/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/DMA/.vscode/settings.json
+++ b/Examples/MAX32660/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/DMA/Makefile b/Examples/MAX32660/DMA/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/DMA/Makefile
+++ b/Examples/MAX32660/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/DMA/README.md b/Examples/MAX32660/DMA/README.md
index 40dcdbd84c..d85444fc5a 100644
--- a/Examples/MAX32660/DMA/README.md
+++ b/Examples/MAX32660/DMA/README.md
@@ -9,7 +9,7 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/DMA/project.mk b/Examples/MAX32660/DMA/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/DMA/project.mk
+++ b/Examples/MAX32660/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32660/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32660/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32660/EEPROM_Emulator/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32660/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/EEPROM_Emulator/Makefile b/Examples/MAX32660/EEPROM_Emulator/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32660/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/EEPROM_Emulator/README.md b/Examples/MAX32660/EEPROM_Emulator/README.md
index e68ef98f3d..c916b3079a 100644
--- a/Examples/MAX32660/EEPROM_Emulator/README.md
+++ b/Examples/MAX32660/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32660 to emulate a 32KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -48,7 +48,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/EEPROM_Emulator/project.mk b/Examples/MAX32660/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32660/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32660/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32660/Flash/.vscode/README.md b/Examples/MAX32660/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/Flash/.vscode/README.md
+++ b/Examples/MAX32660/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/Flash/.vscode/settings.json b/Examples/MAX32660/Flash/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/Flash/.vscode/settings.json
+++ b/Examples/MAX32660/Flash/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/Flash/Makefile b/Examples/MAX32660/Flash/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Flash/Makefile
+++ b/Examples/MAX32660/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Flash/README.md b/Examples/MAX32660/Flash/README.md
index f4a1d007f3..c011898546 100644
--- a/Examples/MAX32660/Flash/README.md
+++ b/Examples/MAX32660/Flash/README.md
@@ -21,7 +21,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -29,7 +29,7 @@ Universal instructions on building, flashing, and debugging this project can be
## Building and Running
-**See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
+**See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
## Hardware Connections
diff --git a/Examples/MAX32660/Flash/project.mk b/Examples/MAX32660/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32660/Flash/project.mk
+++ b/Examples/MAX32660/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32660/Flash_CLI/.vscode/README.md b/Examples/MAX32660/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32660/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/Flash_CLI/.vscode/settings.json b/Examples/MAX32660/Flash_CLI/.vscode/settings.json
index 24e525fb1d..aa04cde869 100755
--- a/Examples/MAX32660/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32660/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/Flash_CLI/Makefile b/Examples/MAX32660/Flash_CLI/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Flash_CLI/Makefile
+++ b/Examples/MAX32660/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Flash_CLI/README.md b/Examples/MAX32660/Flash_CLI/README.md
index cc1c47c043..cb2d717e27 100644
--- a/Examples/MAX32660/Flash_CLI/README.md
+++ b/Examples/MAX32660/Flash_CLI/README.md
@@ -9,7 +9,7 @@ This example demonstates the CLI commands feature of FreeRTOS and various featur
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/Flash_CLI/project.mk b/Examples/MAX32660/Flash_CLI/project.mk
index 7dd1e97aac..63b0ee4a7b 100644
--- a/Examples/MAX32660/Flash_CLI/project.mk
+++ b/Examples/MAX32660/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32660/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX32660/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX32660/FreeRTOSDemo/.vscode/settings.json
index 24e525fb1d..aa04cde869 100755
--- a/Examples/MAX32660/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX32660/FreeRTOSDemo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/FreeRTOSDemo/Makefile b/Examples/MAX32660/FreeRTOSDemo/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/FreeRTOSDemo/Makefile
+++ b/Examples/MAX32660/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/FreeRTOSDemo/README.md b/Examples/MAX32660/FreeRTOSDemo/README.md
index eec2a3318f..848ab0afa5 100644
--- a/Examples/MAX32660/FreeRTOSDemo/README.md
+++ b/Examples/MAX32660/FreeRTOSDemo/README.md
@@ -7,7 +7,7 @@ A basic getting started application for FreeRTOS.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/FreeRTOSDemo/project.mk b/Examples/MAX32660/FreeRTOSDemo/project.mk
index 7dd1e97aac..63b0ee4a7b 100644
--- a/Examples/MAX32660/FreeRTOSDemo/project.mk
+++ b/Examples/MAX32660/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/GPIO/.vscode/README.md b/Examples/MAX32660/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/GPIO/.vscode/README.md
+++ b/Examples/MAX32660/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/GPIO/.vscode/settings.json b/Examples/MAX32660/GPIO/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/GPIO/.vscode/settings.json
+++ b/Examples/MAX32660/GPIO/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/GPIO/Makefile b/Examples/MAX32660/GPIO/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/GPIO/Makefile
+++ b/Examples/MAX32660/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/GPIO/README.md b/Examples/MAX32660/GPIO/README.md
index ea03244008..fe73151bef 100644
--- a/Examples/MAX32660/GPIO/README.md
+++ b/Examples/MAX32660/GPIO/README.md
@@ -9,7 +9,7 @@ P0.11 is continuously scanned and whatever value is read on that pin is then out
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/GPIO/project.mk b/Examples/MAX32660/GPIO/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/GPIO/project.mk
+++ b/Examples/MAX32660/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/Hello_World/.vscode/README.md b/Examples/MAX32660/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/Hello_World/.vscode/README.md
+++ b/Examples/MAX32660/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/Hello_World/.vscode/settings.json b/Examples/MAX32660/Hello_World/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32660/Hello_World/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/Hello_World/Makefile b/Examples/MAX32660/Hello_World/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Hello_World/Makefile
+++ b/Examples/MAX32660/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Hello_World/README.md b/Examples/MAX32660/Hello_World/README.md
index f60c60d034..7cdb3dd063 100644
--- a/Examples/MAX32660/Hello_World/README.md
+++ b/Examples/MAX32660/Hello_World/README.md
@@ -9,7 +9,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/Hello_World/project.mk b/Examples/MAX32660/Hello_World/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/Hello_World/project.mk
+++ b/Examples/MAX32660/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32660/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32660/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32660/Hello_World_Cpp/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32660/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/Hello_World_Cpp/Makefile b/Examples/MAX32660/Hello_World_Cpp/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32660/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Hello_World_Cpp/README.md b/Examples/MAX32660/Hello_World_Cpp/README.md
index 848d643184..aebcf30dd6 100644
--- a/Examples/MAX32660/Hello_World_Cpp/README.md
+++ b/Examples/MAX32660/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/Hello_World_Cpp/project.mk b/Examples/MAX32660/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32660/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32660/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32660/I2C/.vscode/README.md b/Examples/MAX32660/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/I2C/.vscode/README.md
+++ b/Examples/MAX32660/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/I2C/.vscode/settings.json b/Examples/MAX32660/I2C/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/I2C/.vscode/settings.json
+++ b/Examples/MAX32660/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/I2C/Makefile b/Examples/MAX32660/I2C/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/I2C/Makefile
+++ b/Examples/MAX32660/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/I2C/README.md b/Examples/MAX32660/I2C/README.md
index 2c0de0dbe8..04665365fd 100644
--- a/Examples/MAX32660/I2C/README.md
+++ b/Examples/MAX32660/I2C/README.md
@@ -7,7 +7,7 @@ This example uses the I2C Master to read/write from/to the I2C Slave.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/I2C/project.mk b/Examples/MAX32660/I2C/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/I2C/project.mk
+++ b/Examples/MAX32660/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/I2C_MNGR/.vscode/README.md b/Examples/MAX32660/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32660/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/I2C_MNGR/.vscode/settings.json b/Examples/MAX32660/I2C_MNGR/.vscode/settings.json
index c2217ff10c..477a8e3e15 100755
--- a/Examples/MAX32660/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32660/I2C_MNGR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/I2C_MNGR/Makefile b/Examples/MAX32660/I2C_MNGR/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/I2C_MNGR/Makefile
+++ b/Examples/MAX32660/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/I2C_MNGR/README.md b/Examples/MAX32660/I2C_MNGR/README.md
index 5473dd7b8f..4f44083bbd 100644
--- a/Examples/MAX32660/I2C_MNGR/README.md
+++ b/Examples/MAX32660/I2C_MNGR/README.md
@@ -11,7 +11,7 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/I2C_MNGR/project.mk b/Examples/MAX32660/I2C_MNGR/project.mk
index 315928bc48..90e76c6363 100644
--- a/Examples/MAX32660/I2C_MNGR/project.mk
+++ b/Examples/MAX32660/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32660/I2C_SCAN/.vscode/README.md b/Examples/MAX32660/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32660/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/I2C_SCAN/.vscode/settings.json b/Examples/MAX32660/I2C_SCAN/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32660/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/I2C_SCAN/Makefile b/Examples/MAX32660/I2C_SCAN/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/I2C_SCAN/Makefile
+++ b/Examples/MAX32660/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/I2C_SCAN/README.md b/Examples/MAX32660/I2C_SCAN/README.md
index 3030ee41f3..a841d96b75 100644
--- a/Examples/MAX32660/I2C_SCAN/README.md
+++ b/Examples/MAX32660/I2C_SCAN/README.md
@@ -6,7 +6,7 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/I2C_SCAN/project.mk b/Examples/MAX32660/I2C_SCAN/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/I2C_SCAN/project.mk
+++ b/Examples/MAX32660/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/I2C_Sensor/.vscode/README.md b/Examples/MAX32660/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32660/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/I2C_Sensor/.vscode/settings.json b/Examples/MAX32660/I2C_Sensor/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32660/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/I2C_Sensor/Makefile b/Examples/MAX32660/I2C_Sensor/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/I2C_Sensor/Makefile
+++ b/Examples/MAX32660/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/I2C_Sensor/README.md b/Examples/MAX32660/I2C_Sensor/README.md
index 2a99ffb0e3..8e13e897b7 100644
--- a/Examples/MAX32660/I2C_Sensor/README.md
+++ b/Examples/MAX32660/I2C_Sensor/README.md
@@ -9,7 +9,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/I2C_Sensor/project.mk b/Examples/MAX32660/I2C_Sensor/project.mk
index a53675ddcf..6a77af6337 100644
--- a/Examples/MAX32660/I2C_Sensor/project.mk
+++ b/Examples/MAX32660/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32660/I2S/.vscode/README.md b/Examples/MAX32660/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/I2S/.vscode/README.md
+++ b/Examples/MAX32660/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/I2S/.vscode/settings.json b/Examples/MAX32660/I2S/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/I2S/.vscode/settings.json
+++ b/Examples/MAX32660/I2S/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/I2S/Makefile b/Examples/MAX32660/I2S/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/I2S/Makefile
+++ b/Examples/MAX32660/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/I2S/README.md b/Examples/MAX32660/I2S/README.md
index 199c8dd74a..1a302cabac 100644
--- a/Examples/MAX32660/I2S/README.md
+++ b/Examples/MAX32660/I2S/README.md
@@ -1,13 +1,14 @@
## Description
-TBD
+This example demonstrates of the SPIMSS I2S functionality. To demonstrate, an audio signal is output to the I2S pins (P2.2, P2.4 and P2.5).
+
## Software
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -15,9 +16,23 @@ Universal instructions on building, flashing, and debugging this project can be
## Required Connections
-TBD
+- Connect a USB cable between the PC and the CN2 (USB/PWR) connector.
+- Open an terminal application on the PC and connect to the EV kit's console UART at 115200, 8-N-1.
+- Connect audio signals to pins P2.2 (Bit Clock), P2.4 (Data Out), and P2.5 (LR Clock).
## Expected Output
-TBD
+The Console UART of the device will output these messages:
+
+```
+*********** I2S Example **********
+I2S Configured
+Starting I2S Output
+Muting I2S Output
+Unmuting I2S Output
+Pausing I2S Output
+Resuming I2S Output
+Stopping I2S Output. Example Complete.
+```
+
diff --git a/Examples/MAX32660/I2S/project.mk b/Examples/MAX32660/I2S/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/I2S/project.mk
+++ b/Examples/MAX32660/I2S/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/ICC/.vscode/README.md b/Examples/MAX32660/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/ICC/.vscode/README.md
+++ b/Examples/MAX32660/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/ICC/.vscode/settings.json b/Examples/MAX32660/ICC/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/ICC/.vscode/settings.json
+++ b/Examples/MAX32660/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/ICC/Makefile b/Examples/MAX32660/ICC/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/ICC/Makefile
+++ b/Examples/MAX32660/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/ICC/README.md b/Examples/MAX32660/ICC/README.md
index 37a750b336..5cfbe53d24 100644
--- a/Examples/MAX32660/ICC/README.md
+++ b/Examples/MAX32660/ICC/README.md
@@ -12,7 +12,7 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/ICC/project.mk b/Examples/MAX32660/ICC/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/ICC/project.mk
+++ b/Examples/MAX32660/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/Info_Block_Usecase/.vscode/README.md b/Examples/MAX32660/Info_Block_Usecase/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/Info_Block_Usecase/.vscode/README.md
+++ b/Examples/MAX32660/Info_Block_Usecase/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/Info_Block_Usecase/.vscode/settings.json b/Examples/MAX32660/Info_Block_Usecase/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/Info_Block_Usecase/.vscode/settings.json
+++ b/Examples/MAX32660/Info_Block_Usecase/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/Info_Block_Usecase/Makefile b/Examples/MAX32660/Info_Block_Usecase/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Info_Block_Usecase/Makefile
+++ b/Examples/MAX32660/Info_Block_Usecase/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Info_Block_Usecase/README.md b/Examples/MAX32660/Info_Block_Usecase/README.md
index 5fdf44f801..267c38253e 100644
--- a/Examples/MAX32660/Info_Block_Usecase/README.md
+++ b/Examples/MAX32660/Info_Block_Usecase/README.md
@@ -14,7 +14,7 @@ For more information please check MAX32660 User Guide
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/Info_Block_Usecase/project.mk b/Examples/MAX32660/Info_Block_Usecase/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/Info_Block_Usecase/project.mk
+++ b/Examples/MAX32660/Info_Block_Usecase/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/LP/.vscode/README.md b/Examples/MAX32660/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/LP/.vscode/README.md
+++ b/Examples/MAX32660/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/LP/.vscode/settings.json b/Examples/MAX32660/LP/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/LP/.vscode/settings.json
+++ b/Examples/MAX32660/LP/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/LP/Makefile b/Examples/MAX32660/LP/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/LP/Makefile
+++ b/Examples/MAX32660/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/LP/README.md b/Examples/MAX32660/LP/README.md
index 4442817a1b..90e73c537c 100644
--- a/Examples/MAX32660/LP/README.md
+++ b/Examples/MAX32660/LP/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/LP/project.mk b/Examples/MAX32660/LP/project.mk
index 19bf763ca3..705be27c7a 100644
--- a/Examples/MAX32660/LP/project.mk
+++ b/Examples/MAX32660/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/Library_Generate/.vscode/README.md b/Examples/MAX32660/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32660/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32660/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32660/Library_Generate/Makefile b/Examples/MAX32660/Library_Generate/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Library_Generate/Makefile
+++ b/Examples/MAX32660/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Library_Generate/README.md b/Examples/MAX32660/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32660/Library_Generate/README.md
+++ b/Examples/MAX32660/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/Library_Generate/project.mk b/Examples/MAX32660/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32660/Library_Generate/project.mk
+++ b/Examples/MAX32660/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32660/Library_Use/.vscode/README.md b/Examples/MAX32660/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/Library_Use/.vscode/README.md
+++ b/Examples/MAX32660/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/Library_Use/.vscode/settings.json b/Examples/MAX32660/Library_Use/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32660/Library_Use/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/Library_Use/Makefile b/Examples/MAX32660/Library_Use/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Library_Use/Makefile
+++ b/Examples/MAX32660/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Library_Use/README.md b/Examples/MAX32660/Library_Use/README.md
index 78a5bbe106..ea1b3d4a51 100644
--- a/Examples/MAX32660/Library_Use/README.md
+++ b/Examples/MAX32660/Library_Use/README.md
@@ -9,7 +9,7 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/Library_Use/project.mk b/Examples/MAX32660/Library_Use/project.mk
index 37448b4d8e..35cf5faf80 100644
--- a/Examples/MAX32660/Library_Use/project.mk
+++ b/Examples/MAX32660/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32660/RTC/.vscode/README.md b/Examples/MAX32660/RTC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/RTC/.vscode/README.md
+++ b/Examples/MAX32660/RTC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/RTC/.vscode/settings.json b/Examples/MAX32660/RTC/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/RTC/.vscode/settings.json
+++ b/Examples/MAX32660/RTC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/RTC/Makefile b/Examples/MAX32660/RTC/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/RTC/Makefile
+++ b/Examples/MAX32660/RTC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/RTC/README.md b/Examples/MAX32660/RTC/README.md
index dc5be215ac..4d9e01c708 100644
--- a/Examples/MAX32660/RTC/README.md
+++ b/Examples/MAX32660/RTC/README.md
@@ -12,7 +12,7 @@ The time-of-day alarm is then rearmed for another 10 sec. Pressing PB1 will out
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/RTC/project.mk b/Examples/MAX32660/RTC/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/RTC/project.mk
+++ b/Examples/MAX32660/RTC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/RTC_Backup/.vscode/README.md b/Examples/MAX32660/RTC_Backup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/RTC_Backup/.vscode/README.md
+++ b/Examples/MAX32660/RTC_Backup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/RTC_Backup/.vscode/settings.json b/Examples/MAX32660/RTC_Backup/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/RTC_Backup/.vscode/settings.json
+++ b/Examples/MAX32660/RTC_Backup/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/RTC_Backup/Makefile b/Examples/MAX32660/RTC_Backup/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/RTC_Backup/Makefile
+++ b/Examples/MAX32660/RTC_Backup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/RTC_Backup/README.md b/Examples/MAX32660/RTC_Backup/README.md
index 70d9c17414..02a8f8a8d1 100644
--- a/Examples/MAX32660/RTC_Backup/README.md
+++ b/Examples/MAX32660/RTC_Backup/README.md
@@ -10,7 +10,7 @@ The RTC time-of-day alarm is used to wake the device from backup mode every TIME
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/RTC_Backup/project.mk b/Examples/MAX32660/RTC_Backup/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/RTC_Backup/project.mk
+++ b/Examples/MAX32660/RTC_Backup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/SPI/.vscode/README.md b/Examples/MAX32660/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/SPI/.vscode/README.md
+++ b/Examples/MAX32660/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/SPI/.vscode/settings.json b/Examples/MAX32660/SPI/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/SPI/.vscode/settings.json
+++ b/Examples/MAX32660/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/SPI/Makefile b/Examples/MAX32660/SPI/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/SPI/Makefile
+++ b/Examples/MAX32660/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/SPI/README.md b/Examples/MAX32660/SPI/README.md
index 35044feae9..6c29c0a6d3 100644
--- a/Examples/MAX32660/SPI/README.md
+++ b/Examples/MAX32660/SPI/README.md
@@ -12,7 +12,7 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/SPI/project.mk b/Examples/MAX32660/SPI/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/SPI/project.mk
+++ b/Examples/MAX32660/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/SPIMSS/.vscode/README.md b/Examples/MAX32660/SPIMSS/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/SPIMSS/.vscode/README.md
+++ b/Examples/MAX32660/SPIMSS/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/SPIMSS/.vscode/settings.json b/Examples/MAX32660/SPIMSS/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/SPIMSS/.vscode/settings.json
+++ b/Examples/MAX32660/SPIMSS/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/SPIMSS/Makefile b/Examples/MAX32660/SPIMSS/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/SPIMSS/Makefile
+++ b/Examples/MAX32660/SPIMSS/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/SPIMSS/README.md b/Examples/MAX32660/SPIMSS/README.md
index 9138d228c9..88aba4c94b 100644
--- a/Examples/MAX32660/SPIMSS/README.md
+++ b/Examples/MAX32660/SPIMSS/README.md
@@ -10,7 +10,7 @@ Multiple word sizes (2 through 16 bits) are demonstrated. To switch to non-bloc
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/SPIMSS/project.mk b/Examples/MAX32660/SPIMSS/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/SPIMSS/project.mk
+++ b/Examples/MAX32660/SPIMSS/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/SPIMSS_DMA/.vscode/README.md b/Examples/MAX32660/SPIMSS_DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/SPIMSS_DMA/.vscode/README.md
+++ b/Examples/MAX32660/SPIMSS_DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/SPIMSS_DMA/.vscode/settings.json b/Examples/MAX32660/SPIMSS_DMA/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/SPIMSS_DMA/.vscode/settings.json
+++ b/Examples/MAX32660/SPIMSS_DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/SPIMSS_DMA/Makefile b/Examples/MAX32660/SPIMSS_DMA/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/SPIMSS_DMA/Makefile
+++ b/Examples/MAX32660/SPIMSS_DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/SPIMSS_DMA/README.md b/Examples/MAX32660/SPIMSS_DMA/README.md
index 9d1d73fdc3..5ba52bcf25 100644
--- a/Examples/MAX32660/SPIMSS_DMA/README.md
+++ b/Examples/MAX32660/SPIMSS_DMA/README.md
@@ -7,7 +7,7 @@ MISO (P0.10) pins. Connect these two pins together.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -31,5 +31,5 @@ console UART shares the same pins as the SPIMSS. One DMA channel is used as tx f
memory to SPIMSS TX FIFO and another dma channel is used for reading data from SPIMSS
RX FIFO to memory.
-Test successful!
+Test successful.
```
diff --git a/Examples/MAX32660/SPIMSS_DMA/main.c b/Examples/MAX32660/SPIMSS_DMA/main.c
index 401a2a5461..8324c22e18 100644
--- a/Examples/MAX32660/SPIMSS_DMA/main.c
+++ b/Examples/MAX32660/SPIMSS_DMA/main.c
@@ -104,9 +104,16 @@ int main()
{
int i = 0;
int ret_val = 0;
+ int fail = 0;
- printf(
- "\n\n************** SPIMSS-DMA Master Demo **************** \nThis example configures the SPIMSS to send data between the MISO (P0.10) and \nMOSI (P0.11) pins over dma channel 0 and dma channel 1. Connect these two pins\ntogether. This demo shows 1024 byte data transfer for 100 times using dma.\n During this demo you may see junk data printed to the serial port because the\nconsole UART shares the same pins as the SPIMSS.One DMA channel is used as tx from\nmemory to SPIMSS TX FIFO and another dma channel is used for reading data from\nSPIMSS RX FIFO to memory.\n\n");
+ printf("\n\n************** SPIMSS-DMA Master Demo **************** \n");
+ printf("This example configures the SPIMSS to send data between the MISO (P0.10) and \n");
+ printf("MOSI (P0.11) pins over dma channel 0 and dma channel 1. Connect these two pins\n");
+ printf("together. This demo shows 1024 byte data transfer for 100 times using dma.\n");
+ printf("During this demo you may see junk data printed to the serial port because the\n");
+ printf("console UART shares the same pins as the SPIMSS. One DMA channel is used as tx from\n");
+ printf("memory to SPIMSS TX FIFO and another dma channel is used for reading data from\n");
+ printf("SPIMSS RX FIFO to memory.\n\n");
// Preparation of the transmission data and receive data buffer.
for (i = 0; i < NUMBER_OF_UNIT_SIZE; i++) {
@@ -163,17 +170,21 @@ int main()
// Wait for 10 ms to see the transaction on analyser clearly.
MXC_Delay(MXC_DELAY_MSEC(10));
- if (0 ==
- memcmp((void *)rx_data, (void *)tx_data, TRANSFER_UNIT_SIZE * NUMBER_OF_UNIT_SIZE)) {
- printf("Test %d -> Successful\n\r", i);
- } else {
- printf("Test %d -> Failed!\n", i);
+ if (memcmp((void *)rx_data, (void *)tx_data, TRANSFER_UNIT_SIZE * NUMBER_OF_UNIT_SIZE)) {
+ fail++;
}
}
MXC_SPIMSS_Shutdown(SPIMSS);
- while (1) {}
+ // SPIMSS and Console UART share pins. Re-initialize Console UART.
+ MXC_UART_Init(MXC_UART_GET_UART(CONSOLE_UART), CONSOLE_BAUD, MAP_A);
- return 0;
+ if (fail) {
+ printf("\n\nTest Failed.\n\r");
+ return E_FAIL;
+ } else {
+ printf("\n\nTest Successful.\n\r");
+ return 0;
+ }
}
diff --git a/Examples/MAX32660/SPIMSS_DMA/project.mk b/Examples/MAX32660/SPIMSS_DMA/project.mk
index 3e2c6ddad7..e75a20a8fb 100644
--- a/Examples/MAX32660/SPIMSS_DMA/project.mk
+++ b/Examples/MAX32660/SPIMSS_DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32660/SPI_MasterSlave/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/SPI_MasterSlave/.vscode/README.md
+++ b/Examples/MAX32660/SPI_MasterSlave/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/SPI_MasterSlave/.vscode/settings.json b/Examples/MAX32660/SPI_MasterSlave/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/SPI_MasterSlave/.vscode/settings.json
+++ b/Examples/MAX32660/SPI_MasterSlave/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/SPI_MasterSlave/Makefile b/Examples/MAX32660/SPI_MasterSlave/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/SPI_MasterSlave/Makefile
+++ b/Examples/MAX32660/SPI_MasterSlave/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/SPI_MasterSlave/README.md b/Examples/MAX32660/SPI_MasterSlave/README.md
index e3d38223f8..b02277284f 100644
--- a/Examples/MAX32660/SPI_MasterSlave/README.md
+++ b/Examples/MAX32660/SPI_MasterSlave/README.md
@@ -11,7 +11,7 @@ Once the master ends the transaction, the data received by the master and the sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/SPI_MasterSlave/project.mk b/Examples/MAX32660/SPI_MasterSlave/project.mk
index 5dece4dfe6..a298e084ed 100644
--- a/Examples/MAX32660/SPI_MasterSlave/project.mk
+++ b/Examples/MAX32660/SPI_MasterSlave/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32660/SecureROM_BL_Host/.vscode/README.md b/Examples/MAX32660/SecureROM_BL_Host/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/SecureROM_BL_Host/.vscode/README.md
+++ b/Examples/MAX32660/SecureROM_BL_Host/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/SecureROM_BL_Host/.vscode/settings.json b/Examples/MAX32660/SecureROM_BL_Host/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/SecureROM_BL_Host/.vscode/settings.json
+++ b/Examples/MAX32660/SecureROM_BL_Host/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/SecureROM_BL_Host/Makefile b/Examples/MAX32660/SecureROM_BL_Host/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/SecureROM_BL_Host/Makefile
+++ b/Examples/MAX32660/SecureROM_BL_Host/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/SecureROM_BL_Host/README.md b/Examples/MAX32660/SecureROM_BL_Host/README.md
index 2399998620..80647d81f2 100644
--- a/Examples/MAX32660/SecureROM_BL_Host/README.md
+++ b/Examples/MAX32660/SecureROM_BL_Host/README.md
@@ -22,7 +22,7 @@ Please check:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/SecureROM_BL_Host/project.mk b/Examples/MAX32660/SecureROM_BL_Host/project.mk
index 973bddf644..626673adfc 100644
--- a/Examples/MAX32660/SecureROM_BL_Host/project.mk
+++ b/Examples/MAX32660/SecureROM_BL_Host/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32660/SecureROM_BL_Host/script/README.md b/Examples/MAX32660/SecureROM_BL_Host/script/README.md
index af37678a52..a3f41e5bc9 100644
--- a/Examples/MAX32660/SecureROM_BL_Host/script/README.md
+++ b/Examples/MAX32660/SecureROM_BL_Host/script/README.md
@@ -9,7 +9,7 @@ then each packet array will linked with a C structure.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/TMR/.vscode/README.md b/Examples/MAX32660/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/TMR/.vscode/README.md
+++ b/Examples/MAX32660/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/TMR/.vscode/settings.json b/Examples/MAX32660/TMR/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/TMR/.vscode/settings.json
+++ b/Examples/MAX32660/TMR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/TMR/Makefile b/Examples/MAX32660/TMR/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/TMR/Makefile
+++ b/Examples/MAX32660/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/TMR/README.md b/Examples/MAX32660/TMR/README.md
index 5c8aac7ee6..b432fa5a50 100644
--- a/Examples/MAX32660/TMR/README.md
+++ b/Examples/MAX32660/TMR/README.md
@@ -13,7 +13,7 @@ Push PB1 to start the PWM and continuous timer and PB2 to start the oneshot time
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/TMR/project.mk b/Examples/MAX32660/TMR/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/TMR/project.mk
+++ b/Examples/MAX32660/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/Temp_Monitor/.vscode/README.md b/Examples/MAX32660/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX32660/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/Temp_Monitor/.vscode/settings.json b/Examples/MAX32660/Temp_Monitor/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX32660/Temp_Monitor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/Temp_Monitor/Makefile b/Examples/MAX32660/Temp_Monitor/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Temp_Monitor/Makefile
+++ b/Examples/MAX32660/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Temp_Monitor/README.md b/Examples/MAX32660/Temp_Monitor/README.md
index 8cdc0c76e5..70f71b181f 100644
--- a/Examples/MAX32660/Temp_Monitor/README.md
+++ b/Examples/MAX32660/Temp_Monitor/README.md
@@ -15,7 +15,7 @@ The temperature limits, flash storage page, and RTC time-of-day alarm period are
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/Temp_Monitor/project.mk b/Examples/MAX32660/Temp_Monitor/project.mk
index 7e3d664eac..aebbcc92b4 100644
--- a/Examples/MAX32660/Temp_Monitor/project.mk
+++ b/Examples/MAX32660/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32660/UART/.vscode/README.md b/Examples/MAX32660/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/UART/.vscode/README.md
+++ b/Examples/MAX32660/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/UART/.vscode/settings.json b/Examples/MAX32660/UART/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/UART/.vscode/settings.json
+++ b/Examples/MAX32660/UART/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/UART/Makefile b/Examples/MAX32660/UART/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/UART/Makefile
+++ b/Examples/MAX32660/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/UART/README.md b/Examples/MAX32660/UART/README.md
index 3438009007..eb275a9d8d 100644
--- a/Examples/MAX32660/UART/README.md
+++ b/Examples/MAX32660/UART/README.md
@@ -7,7 +7,7 @@ This application uses two serial ports to send and receive data. One serial por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/UART/project.mk b/Examples/MAX32660/UART/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/UART/project.mk
+++ b/Examples/MAX32660/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/UART_Wakeup/.vscode/README.md b/Examples/MAX32660/UART_Wakeup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/UART_Wakeup/.vscode/README.md
+++ b/Examples/MAX32660/UART_Wakeup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/UART_Wakeup/.vscode/settings.json b/Examples/MAX32660/UART_Wakeup/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/UART_Wakeup/.vscode/settings.json
+++ b/Examples/MAX32660/UART_Wakeup/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/UART_Wakeup/Makefile b/Examples/MAX32660/UART_Wakeup/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/UART_Wakeup/Makefile
+++ b/Examples/MAX32660/UART_Wakeup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/UART_Wakeup/README.md b/Examples/MAX32660/UART_Wakeup/README.md
new file mode 100644
index 0000000000..9f85ecc2c2
--- /dev/null
+++ b/Examples/MAX32660/UART_Wakeup/README.md
@@ -0,0 +1,49 @@
+## Description
+
+This example demonstrates using the UART (console UART) as a wake-up source from a low power state.
+
+
+## Software
+
+### Project Usage
+
+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/)**.
+
+### Project-Specific Build Notes
+
+(None - this project builds as a standard example)
+
+## Required Connections
+
+- Connect a USB cable between the PC and the USB connector.
+- Open an terminal application on the PC and connect to the EV kit's console UART at 115200, 8-N-1.
+
+## Expected Output
+
+The Console UART of the device will output these messages:
+
+```
+******************** LP Serial Character Wake Up Example *******************
+
+This example demonstrates how to send a serial character to wake up the device.
+Each string sent will be echoed to the terminal. Strings sent to wake up the
+device will appear as garbage due to wake-up latency, each of the following
+strings will be processed correctly. Sending "sleep" will put the device
+back in deep sleep and sending "quit" will end the example.
+
+To measure wake-up latency, probe pins P0.13 (LED) and P0.11 (UART RX Pin).
+
+**NOTE**: Each string sent to the device must end in a "\r" character for the
+strings to be processed correctly.
+
+Press PB1 to begin the demo.
+Now entering deep sleep mode. Send any character string to wake up the device.
+
+String Received: sleep
+Going back to deep sleep.
+String Received: quit
+
+Stopping application.
+
+```
+
diff --git a/Examples/MAX32660/UART_Wakeup/main.c b/Examples/MAX32660/UART_Wakeup/main.c
index 37fd1c10a8..292b9755e0 100644
--- a/Examples/MAX32660/UART_Wakeup/main.c
+++ b/Examples/MAX32660/UART_Wakeup/main.c
@@ -119,6 +119,8 @@ int main(void)
MXC_LP_ClearWakeStatus();
MXC_LP_EnterDeepSleepMode();
} else if (!strcmp(rxBuf, "quit\r")) { //If "quit\r" received, end example.
+ printf("\nStopping application.\n");
+ while (MXC_UART_Busy(ConsoleUART)) {}
break;
}
@@ -128,8 +130,5 @@ int main(void)
}
}
- printf("Example complete!");
- while (MXC_UART_Busy(ConsoleUART)) {}
-
return 0;
}
diff --git a/Examples/MAX32660/UART_Wakeup/project.mk b/Examples/MAX32660/UART_Wakeup/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/UART_Wakeup/project.mk
+++ b/Examples/MAX32660/UART_Wakeup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/Watchdog/.vscode/README.md b/Examples/MAX32660/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/Watchdog/.vscode/README.md
+++ b/Examples/MAX32660/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/Watchdog/.vscode/settings.json b/Examples/MAX32660/Watchdog/.vscode/settings.json
index ac4a73b165..bdfcb6968c 100755
--- a/Examples/MAX32660/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32660/Watchdog/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/Watchdog/Makefile b/Examples/MAX32660/Watchdog/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/Watchdog/Makefile
+++ b/Examples/MAX32660/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/Watchdog/README.md b/Examples/MAX32660/Watchdog/README.md
index 2eef92dc94..9f606d7f7f 100644
--- a/Examples/MAX32660/Watchdog/README.md
+++ b/Examples/MAX32660/Watchdog/README.md
@@ -11,7 +11,7 @@ When the application begins, it initializes and starts the watchdog timer. The
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32660/Watchdog/main.c b/Examples/MAX32660/Watchdog/main.c
index a9fbbad787..2753759aa6 100644
--- a/Examples/MAX32660/Watchdog/main.c
+++ b/Examples/MAX32660/Watchdog/main.c
@@ -45,9 +45,11 @@
#include "pb.h"
/***** Definitions *****/
-#define OVERFLOW //Test Windowed timer \
- //OVERFLOW \
- //UNDERFLOW
+
+// Test Windowed timer:
+// OVERFLOW
+// UNDERFLOW
+#define OVERFLOW
#define RESET_PERIOD MXC_WDT_PERIOD_2_28
#define INT_PERIOD MXC_WDT_PERIOD_2_27
diff --git a/Examples/MAX32660/Watchdog/project.mk b/Examples/MAX32660/Watchdog/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32660/Watchdog/project.mk
+++ b/Examples/MAX32660/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32660/WearLeveling/.vscode/README.md b/Examples/MAX32660/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32660/WearLeveling/.vscode/README.md
+++ b/Examples/MAX32660/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32660/WearLeveling/.vscode/settings.json b/Examples/MAX32660/WearLeveling/.vscode/settings.json
index ab18972512..a1e1c74ce7 100755
--- a/Examples/MAX32660/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX32660/WearLeveling/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32660/WearLeveling/Makefile b/Examples/MAX32660/WearLeveling/Makefile
index a93b125a00..e741bf851e 100644
--- a/Examples/MAX32660/WearLeveling/Makefile
+++ b/Examples/MAX32660/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32660/WearLeveling/README.md b/Examples/MAX32660/WearLeveling/README.md
index 49689faecb..0b6f2322a4 100644
--- a/Examples/MAX32660/WearLeveling/README.md
+++ b/Examples/MAX32660/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32660EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32660EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32660/WearLeveling/project.mk b/Examples/MAX32660/WearLeveling/project.mk
index 225e7d5ae4..68501672c8 100644
--- a/Examples/MAX32660/WearLeveling/project.mk
+++ b/Examples/MAX32660/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32662/ADC/.vscode/README.md b/Examples/MAX32662/ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ADC/.vscode/README.md
+++ b/Examples/MAX32662/ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ADC/.vscode/settings.json b/Examples/MAX32662/ADC/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/ADC/.vscode/settings.json
+++ b/Examples/MAX32662/ADC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ADC/Makefile b/Examples/MAX32662/ADC/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/ADC/Makefile
+++ b/Examples/MAX32662/ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ADC/README.md b/Examples/MAX32662/ADC/README.md
index c491de0383..9a48b77269 100644
--- a/Examples/MAX32662/ADC/README.md
+++ b/Examples/MAX32662/ADC/README.md
@@ -11,7 +11,7 @@ Additionally the trigger source that starts the ADC conversion can be selected a
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/ADC/project.mk b/Examples/MAX32662/ADC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/ADC/project.mk
+++ b/Examples/MAX32662/ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/ARM-DSP/README.md b/Examples/MAX32662/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32662/ARM-DSP/README.md
+++ b/Examples/MAX32662/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_bayes_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_bayes_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_convolution_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_convolution_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_fir_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_fir_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_matrix_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_matrix_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_svm_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_svm_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32662/ARM-DSP/arm_variance_example/Makefile
index df7655a152..3f1695b171 100644
--- a/Examples/MAX32662/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32662/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX32662/ARM-DSP/arm_variance_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32662/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX32662/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32662/Bootloader_Host/.vscode/README.md b/Examples/MAX32662/Bootloader_Host/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Bootloader_Host/.vscode/README.md
+++ b/Examples/MAX32662/Bootloader_Host/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Bootloader_Host/.vscode/settings.json b/Examples/MAX32662/Bootloader_Host/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/Bootloader_Host/.vscode/settings.json
+++ b/Examples/MAX32662/Bootloader_Host/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Bootloader_Host/Makefile b/Examples/MAX32662/Bootloader_Host/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Bootloader_Host/Makefile
+++ b/Examples/MAX32662/Bootloader_Host/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Bootloader_Host/README.md b/Examples/MAX32662/Bootloader_Host/README.md
index 3626dce4b0..c7e3a90dec 100644
--- a/Examples/MAX32662/Bootloader_Host/README.md
+++ b/Examples/MAX32662/Bootloader_Host/README.md
@@ -23,7 +23,7 @@ flash based bootloader. It is designed to easily be ported on any micro.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Bootloader_Host/project.mk b/Examples/MAX32662/Bootloader_Host/project.mk
index 194ab47c2f..c39e739b40 100644
--- a/Examples/MAX32662/Bootloader_Host/project.mk
+++ b/Examples/MAX32662/Bootloader_Host/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/CAN/.vscode/README.md b/Examples/MAX32662/CAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/CAN/.vscode/README.md
+++ b/Examples/MAX32662/CAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/CAN/.vscode/settings.json b/Examples/MAX32662/CAN/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/CAN/.vscode/settings.json
+++ b/Examples/MAX32662/CAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/CAN/Makefile b/Examples/MAX32662/CAN/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/CAN/Makefile
+++ b/Examples/MAX32662/CAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/CAN/README.md b/Examples/MAX32662/CAN/README.md
index 6d31f5b71a..54a9e2e328 100644
--- a/Examples/MAX32662/CAN/README.md
+++ b/Examples/MAX32662/CAN/README.md
@@ -9,7 +9,7 @@ Connect CAN signals on header JH3 to CAN bus.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/CAN/project.mk b/Examples/MAX32662/CAN/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/CAN/project.mk
+++ b/Examples/MAX32662/CAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Coremark/.vscode/README.md b/Examples/MAX32662/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Coremark/.vscode/README.md
+++ b/Examples/MAX32662/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Coremark/.vscode/settings.json b/Examples/MAX32662/Coremark/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/Coremark/.vscode/settings.json
+++ b/Examples/MAX32662/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Coremark/Makefile b/Examples/MAX32662/Coremark/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Coremark/Makefile
+++ b/Examples/MAX32662/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Coremark/README.md b/Examples/MAX32662/Coremark/README.md
index f4f3eed956..b3267363fe 100644
--- a/Examples/MAX32662/Coremark/README.md
+++ b/Examples/MAX32662/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Coremark/project.mk b/Examples/MAX32662/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32662/Coremark/project.mk
+++ b/Examples/MAX32662/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/DMA/.vscode/README.md b/Examples/MAX32662/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/DMA/.vscode/README.md
+++ b/Examples/MAX32662/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/DMA/.vscode/settings.json b/Examples/MAX32662/DMA/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/DMA/.vscode/settings.json
+++ b/Examples/MAX32662/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/DMA/Makefile b/Examples/MAX32662/DMA/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/DMA/Makefile
+++ b/Examples/MAX32662/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/DMA/README.md b/Examples/MAX32662/DMA/README.md
index 36ff6971be..690a3255b0 100644
--- a/Examples/MAX32662/DMA/README.md
+++ b/Examples/MAX32662/DMA/README.md
@@ -9,7 +9,7 @@ The first example does just as described above, a single DMA transaction that co
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/DMA/project.mk b/Examples/MAX32662/DMA/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/DMA/project.mk
+++ b/Examples/MAX32662/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Demo/.vscode/README.md b/Examples/MAX32662/Demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Demo/.vscode/README.md
+++ b/Examples/MAX32662/Demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Demo/.vscode/settings.json b/Examples/MAX32662/Demo/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/Demo/.vscode/settings.json
+++ b/Examples/MAX32662/Demo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Demo/Makefile b/Examples/MAX32662/Demo/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Demo/Makefile
+++ b/Examples/MAX32662/Demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Demo/README.md b/Examples/MAX32662/Demo/README.md
index 6a3358b580..d6a48ce689 100644
--- a/Examples/MAX32662/Demo/README.md
+++ b/Examples/MAX32662/Demo/README.md
@@ -12,7 +12,7 @@ Features:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Demo/project.mk b/Examples/MAX32662/Demo/project.mk
index bebe895f52..75126edd53 100644
--- a/Examples/MAX32662/Demo/project.mk
+++ b/Examples/MAX32662/Demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32662/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32662/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32662/EEPROM_Emulator/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32662/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/EEPROM_Emulator/Makefile b/Examples/MAX32662/EEPROM_Emulator/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32662/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/EEPROM_Emulator/README.md b/Examples/MAX32662/EEPROM_Emulator/README.md
index 1f477e2ba8..876e6733e3 100644
--- a/Examples/MAX32662/EEPROM_Emulator/README.md
+++ b/Examples/MAX32662/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32662 to emulate a 32KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -48,7 +48,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/EEPROM_Emulator/project.mk b/Examples/MAX32662/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32662/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32662/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Flash/.vscode/README.md b/Examples/MAX32662/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Flash/.vscode/README.md
+++ b/Examples/MAX32662/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Flash/.vscode/settings.json b/Examples/MAX32662/Flash/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/Flash/.vscode/settings.json
+++ b/Examples/MAX32662/Flash/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Flash/Makefile b/Examples/MAX32662/Flash/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Flash/Makefile
+++ b/Examples/MAX32662/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Flash/README.md b/Examples/MAX32662/Flash/README.md
index fbaae096fa..db0e4ebfdf 100644
--- a/Examples/MAX32662/Flash/README.md
+++ b/Examples/MAX32662/Flash/README.md
@@ -21,7 +21,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -37,7 +37,7 @@ MAX32662EVKIT:
## Building and Running
-**See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
+**See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
## Expected Output
diff --git a/Examples/MAX32662/Flash/project.mk b/Examples/MAX32662/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32662/Flash/project.mk
+++ b/Examples/MAX32662/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Flash_CLI/.vscode/README.md b/Examples/MAX32662/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32662/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Flash_CLI/.vscode/settings.json b/Examples/MAX32662/Flash_CLI/.vscode/settings.json
index 364ab3c7a3..4dcc7803a6 100755
--- a/Examples/MAX32662/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32662/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Flash_CLI/Makefile b/Examples/MAX32662/Flash_CLI/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Flash_CLI/Makefile
+++ b/Examples/MAX32662/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Flash_CLI/README.md b/Examples/MAX32662/Flash_CLI/README.md
index 581406b64b..4a19dbd19c 100644
--- a/Examples/MAX32662/Flash_CLI/README.md
+++ b/Examples/MAX32662/Flash_CLI/README.md
@@ -9,7 +9,7 @@ This example demonstates the CLI commands feature of FreeRTOS and various featur
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Flash_CLI/project.mk b/Examples/MAX32662/Flash_CLI/project.mk
index a2da2efeb7..b46ded3d1d 100644
--- a/Examples/MAX32662/Flash_CLI/project.mk
+++ b/Examples/MAX32662/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/GPIO/.vscode/README.md b/Examples/MAX32662/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/GPIO/.vscode/README.md
+++ b/Examples/MAX32662/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/GPIO/.vscode/settings.json b/Examples/MAX32662/GPIO/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/GPIO/.vscode/settings.json
+++ b/Examples/MAX32662/GPIO/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/GPIO/Makefile b/Examples/MAX32662/GPIO/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/GPIO/Makefile
+++ b/Examples/MAX32662/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/GPIO/README.md b/Examples/MAX32662/GPIO/README.md
index 8d016c212d..f2ad9c04cb 100644
--- a/Examples/MAX32662/GPIO/README.md
+++ b/Examples/MAX32662/GPIO/README.md
@@ -9,7 +9,7 @@ P0.04 is continuously scanned and whatever value is read on that pin is then out
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/GPIO/project.mk b/Examples/MAX32662/GPIO/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/GPIO/project.mk
+++ b/Examples/MAX32662/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Hello_World/.vscode/README.md b/Examples/MAX32662/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Hello_World/.vscode/README.md
+++ b/Examples/MAX32662/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Hello_World/.vscode/settings.json b/Examples/MAX32662/Hello_World/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32662/Hello_World/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Hello_World/Makefile b/Examples/MAX32662/Hello_World/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Hello_World/Makefile
+++ b/Examples/MAX32662/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Hello_World/README.md b/Examples/MAX32662/Hello_World/README.md
index f08d89b045..37fb9623be 100644
--- a/Examples/MAX32662/Hello_World/README.md
+++ b/Examples/MAX32662/Hello_World/README.md
@@ -9,7 +9,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Hello_World/project.mk b/Examples/MAX32662/Hello_World/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/Hello_World/project.mk
+++ b/Examples/MAX32662/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32662/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32662/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32662/Hello_World_Cpp/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32662/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Hello_World_Cpp/Makefile b/Examples/MAX32662/Hello_World_Cpp/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32662/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Hello_World_Cpp/README.md b/Examples/MAX32662/Hello_World_Cpp/README.md
index 098f20f11c..88f84b20c3 100644
--- a/Examples/MAX32662/Hello_World_Cpp/README.md
+++ b/Examples/MAX32662/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Hello_World_Cpp/project.mk b/Examples/MAX32662/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32662/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32662/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32662/I2C/.vscode/README.md b/Examples/MAX32662/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/I2C/.vscode/README.md
+++ b/Examples/MAX32662/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/I2C/.vscode/settings.json b/Examples/MAX32662/I2C/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/I2C/.vscode/settings.json
+++ b/Examples/MAX32662/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/I2C/Makefile b/Examples/MAX32662/I2C/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/I2C/Makefile
+++ b/Examples/MAX32662/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/I2C/README.md b/Examples/MAX32662/I2C/README.md
index b72a594976..fabbcc90f3 100644
--- a/Examples/MAX32662/I2C/README.md
+++ b/Examples/MAX32662/I2C/README.md
@@ -7,7 +7,7 @@ This example uses the I2C Master to read/write from/to the I2C Slave.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/I2C/project.mk b/Examples/MAX32662/I2C/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/I2C/project.mk
+++ b/Examples/MAX32662/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/I2C_MNGR/.vscode/README.md b/Examples/MAX32662/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32662/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/I2C_MNGR/.vscode/settings.json b/Examples/MAX32662/I2C_MNGR/.vscode/settings.json
index 326981d163..789cb82837 100755
--- a/Examples/MAX32662/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32662/I2C_MNGR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/I2C_MNGR/Makefile b/Examples/MAX32662/I2C_MNGR/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/I2C_MNGR/Makefile
+++ b/Examples/MAX32662/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/I2C_MNGR/README.md b/Examples/MAX32662/I2C_MNGR/README.md
index 16282e0ce8..decb1eb11a 100644
--- a/Examples/MAX32662/I2C_MNGR/README.md
+++ b/Examples/MAX32662/I2C_MNGR/README.md
@@ -11,7 +11,7 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/I2C_MNGR/project.mk b/Examples/MAX32662/I2C_MNGR/project.mk
index afefae0c40..c006c3ef92 100644
--- a/Examples/MAX32662/I2C_MNGR/project.mk
+++ b/Examples/MAX32662/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/I2C_SCAN/.vscode/README.md b/Examples/MAX32662/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32662/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/I2C_SCAN/.vscode/settings.json b/Examples/MAX32662/I2C_SCAN/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32662/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/I2C_SCAN/Makefile b/Examples/MAX32662/I2C_SCAN/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/I2C_SCAN/Makefile
+++ b/Examples/MAX32662/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/I2C_SCAN/README.md b/Examples/MAX32662/I2C_SCAN/README.md
index 3862de0c1b..1e9ce84e58 100644
--- a/Examples/MAX32662/I2C_SCAN/README.md
+++ b/Examples/MAX32662/I2C_SCAN/README.md
@@ -6,7 +6,7 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/I2C_SCAN/project.mk b/Examples/MAX32662/I2C_SCAN/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/I2C_SCAN/project.mk
+++ b/Examples/MAX32662/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/I2C_Sensor/.vscode/README.md b/Examples/MAX32662/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32662/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/I2C_Sensor/.vscode/settings.json b/Examples/MAX32662/I2C_Sensor/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32662/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/I2C_Sensor/Makefile b/Examples/MAX32662/I2C_Sensor/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/I2C_Sensor/Makefile
+++ b/Examples/MAX32662/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/I2C_Sensor/README.md b/Examples/MAX32662/I2C_Sensor/README.md
index 8171f846ac..3a71e81d26 100644
--- a/Examples/MAX32662/I2C_Sensor/README.md
+++ b/Examples/MAX32662/I2C_Sensor/README.md
@@ -9,7 +9,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/I2C_Sensor/project.mk b/Examples/MAX32662/I2C_Sensor/project.mk
index 7d28c02d02..3c3d48bae5 100644
--- a/Examples/MAX32662/I2C_Sensor/project.mk
+++ b/Examples/MAX32662/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/I2S/.vscode/README.md b/Examples/MAX32662/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/I2S/.vscode/README.md
+++ b/Examples/MAX32662/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/I2S/.vscode/settings.json b/Examples/MAX32662/I2S/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/I2S/.vscode/settings.json
+++ b/Examples/MAX32662/I2S/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/I2S/Makefile b/Examples/MAX32662/I2S/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/I2S/Makefile
+++ b/Examples/MAX32662/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/I2S/README.md b/Examples/MAX32662/I2S/README.md
index c24cfa1c18..3731491592 100644
--- a/Examples/MAX32662/I2S/README.md
+++ b/Examples/MAX32662/I2S/README.md
@@ -7,7 +7,7 @@ This example demonstrates how to transmit a set of audio samples over the I2S bu
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/I2S/project.mk b/Examples/MAX32662/I2S/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/I2S/project.mk
+++ b/Examples/MAX32662/I2S/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/ICC/.vscode/README.md b/Examples/MAX32662/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/ICC/.vscode/README.md
+++ b/Examples/MAX32662/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/ICC/.vscode/settings.json b/Examples/MAX32662/ICC/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/ICC/.vscode/settings.json
+++ b/Examples/MAX32662/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/ICC/Makefile b/Examples/MAX32662/ICC/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/ICC/Makefile
+++ b/Examples/MAX32662/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/ICC/README.md b/Examples/MAX32662/ICC/README.md
index a39e60beee..5d8b0fc107 100644
--- a/Examples/MAX32662/ICC/README.md
+++ b/Examples/MAX32662/ICC/README.md
@@ -12,7 +12,7 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/ICC/project.mk b/Examples/MAX32662/ICC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/ICC/project.mk
+++ b/Examples/MAX32662/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Info_Block_Usecase/.vscode/README.md b/Examples/MAX32662/Info_Block_Usecase/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Info_Block_Usecase/.vscode/README.md
+++ b/Examples/MAX32662/Info_Block_Usecase/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Info_Block_Usecase/.vscode/settings.json b/Examples/MAX32662/Info_Block_Usecase/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/Info_Block_Usecase/.vscode/settings.json
+++ b/Examples/MAX32662/Info_Block_Usecase/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Info_Block_Usecase/Makefile b/Examples/MAX32662/Info_Block_Usecase/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Info_Block_Usecase/Makefile
+++ b/Examples/MAX32662/Info_Block_Usecase/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Info_Block_Usecase/README.md b/Examples/MAX32662/Info_Block_Usecase/README.md
index 5e64d11602..6a1984ad4c 100644
--- a/Examples/MAX32662/Info_Block_Usecase/README.md
+++ b/Examples/MAX32662/Info_Block_Usecase/README.md
@@ -13,7 +13,7 @@ For more information please check the MAX32662 User Guide.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Info_Block_Usecase/project.mk b/Examples/MAX32662/Info_Block_Usecase/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/Info_Block_Usecase/project.mk
+++ b/Examples/MAX32662/Info_Block_Usecase/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/LP/.vscode/README.md b/Examples/MAX32662/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/LP/.vscode/README.md
+++ b/Examples/MAX32662/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/LP/.vscode/settings.json b/Examples/MAX32662/LP/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/LP/.vscode/settings.json
+++ b/Examples/MAX32662/LP/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/LP/Makefile b/Examples/MAX32662/LP/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/LP/Makefile
+++ b/Examples/MAX32662/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/LP/README.md b/Examples/MAX32662/LP/README.md
index 3ecb709c1d..782fb276c3 100644
--- a/Examples/MAX32662/LP/README.md
+++ b/Examples/MAX32662/LP/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/LP/project.mk b/Examples/MAX32662/LP/project.mk
index 13033a1f65..e8d6a1d1c7 100644
--- a/Examples/MAX32662/LP/project.mk
+++ b/Examples/MAX32662/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Library_Generate/.vscode/README.md b/Examples/MAX32662/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32662/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32662/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32662/Library_Generate/Makefile b/Examples/MAX32662/Library_Generate/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Library_Generate/Makefile
+++ b/Examples/MAX32662/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Library_Generate/README.md b/Examples/MAX32662/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32662/Library_Generate/README.md
+++ b/Examples/MAX32662/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Library_Generate/project.mk b/Examples/MAX32662/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32662/Library_Generate/project.mk
+++ b/Examples/MAX32662/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Library_Use/.vscode/README.md b/Examples/MAX32662/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Library_Use/.vscode/README.md
+++ b/Examples/MAX32662/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Library_Use/.vscode/settings.json b/Examples/MAX32662/Library_Use/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32662/Library_Use/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Library_Use/Makefile b/Examples/MAX32662/Library_Use/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Library_Use/Makefile
+++ b/Examples/MAX32662/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Library_Use/README.md b/Examples/MAX32662/Library_Use/README.md
index c951de0ecc..b2af2fbd8f 100644
--- a/Examples/MAX32662/Library_Use/README.md
+++ b/Examples/MAX32662/Library_Use/README.md
@@ -9,7 +9,7 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Library_Use/project.mk b/Examples/MAX32662/Library_Use/project.mk
index ac32a7de2e..f724d98b79 100644
--- a/Examples/MAX32662/Library_Use/project.mk
+++ b/Examples/MAX32662/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/RTC/.vscode/README.md b/Examples/MAX32662/RTC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/RTC/.vscode/README.md
+++ b/Examples/MAX32662/RTC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/RTC/.vscode/settings.json b/Examples/MAX32662/RTC/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/RTC/.vscode/settings.json
+++ b/Examples/MAX32662/RTC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/RTC/Makefile b/Examples/MAX32662/RTC/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/RTC/Makefile
+++ b/Examples/MAX32662/RTC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/RTC/README.md b/Examples/MAX32662/RTC/README.md
index aa2f4e01d2..f0c60365cf 100644
--- a/Examples/MAX32662/RTC/README.md
+++ b/Examples/MAX32662/RTC/README.md
@@ -11,7 +11,7 @@ Additionally, pressing PB0 (SW2) will output the current time of the RTC to the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/RTC/project.mk b/Examples/MAX32662/RTC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/RTC/project.mk
+++ b/Examples/MAX32662/RTC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/RTC_Backup/.vscode/README.md b/Examples/MAX32662/RTC_Backup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/RTC_Backup/.vscode/README.md
+++ b/Examples/MAX32662/RTC_Backup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/RTC_Backup/.vscode/settings.json b/Examples/MAX32662/RTC_Backup/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/RTC_Backup/.vscode/settings.json
+++ b/Examples/MAX32662/RTC_Backup/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/RTC_Backup/Makefile b/Examples/MAX32662/RTC_Backup/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/RTC_Backup/Makefile
+++ b/Examples/MAX32662/RTC_Backup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/RTC_Backup/README.md b/Examples/MAX32662/RTC_Backup/README.md
index c552910154..0155973aa1 100644
--- a/Examples/MAX32662/RTC_Backup/README.md
+++ b/Examples/MAX32662/RTC_Backup/README.md
@@ -10,7 +10,7 @@ The RTC time-of-day alarm is used to wake the device from backup mode every TIME
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/RTC_Backup/project.mk b/Examples/MAX32662/RTC_Backup/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/RTC_Backup/project.mk
+++ b/Examples/MAX32662/RTC_Backup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32662/SCPA_OTP_Dump/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/SCPA_OTP_Dump/.vscode/README.md
+++ b/Examples/MAX32662/SCPA_OTP_Dump/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/SCPA_OTP_Dump/.vscode/settings.json b/Examples/MAX32662/SCPA_OTP_Dump/.vscode/settings.json
index 26b861b1b2..cf04965252 100755
--- a/Examples/MAX32662/SCPA_OTP_Dump/.vscode/settings.json
+++ b/Examples/MAX32662/SCPA_OTP_Dump/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/SCPA_OTP_Dump/Makefile b/Examples/MAX32662/SCPA_OTP_Dump/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/SCPA_OTP_Dump/Makefile
+++ b/Examples/MAX32662/SCPA_OTP_Dump/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/SCPA_OTP_Dump/README.md b/Examples/MAX32662/SCPA_OTP_Dump/README.md
index 082c486c9e..699d8a59a0 100644
--- a/Examples/MAX32662/SCPA_OTP_Dump/README.md
+++ b/Examples/MAX32662/SCPA_OTP_Dump/README.md
@@ -18,7 +18,7 @@ PROJ_CFLAGS+=-DMAX32662_A1
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/SCPA_OTP_Dump/project.mk b/Examples/MAX32662/SCPA_OTP_Dump/project.mk
index d79badd2da..a25fd08271 100644
--- a/Examples/MAX32662/SCPA_OTP_Dump/project.mk
+++ b/Examples/MAX32662/SCPA_OTP_Dump/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/SPI/.vscode/README.md b/Examples/MAX32662/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/SPI/.vscode/README.md
+++ b/Examples/MAX32662/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/SPI/.vscode/settings.json b/Examples/MAX32662/SPI/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/SPI/.vscode/settings.json
+++ b/Examples/MAX32662/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/SPI/Makefile b/Examples/MAX32662/SPI/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/SPI/Makefile
+++ b/Examples/MAX32662/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/SPI/README.md b/Examples/MAX32662/SPI/README.md
index c0331fb5dd..95f0da0fb7 100644
--- a/Examples/MAX32662/SPI/README.md
+++ b/Examples/MAX32662/SPI/README.md
@@ -12,7 +12,7 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/SPI/project.mk b/Examples/MAX32662/SPI/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/SPI/project.mk
+++ b/Examples/MAX32662/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32662/SPI_MasterSlave/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/SPI_MasterSlave/.vscode/README.md
+++ b/Examples/MAX32662/SPI_MasterSlave/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/SPI_MasterSlave/.vscode/settings.json b/Examples/MAX32662/SPI_MasterSlave/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/SPI_MasterSlave/.vscode/settings.json
+++ b/Examples/MAX32662/SPI_MasterSlave/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/SPI_MasterSlave/Makefile b/Examples/MAX32662/SPI_MasterSlave/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/SPI_MasterSlave/Makefile
+++ b/Examples/MAX32662/SPI_MasterSlave/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/SPI_MasterSlave/README.md b/Examples/MAX32662/SPI_MasterSlave/README.md
index 7336bac5c2..1163015e38 100644
--- a/Examples/MAX32662/SPI_MasterSlave/README.md
+++ b/Examples/MAX32662/SPI_MasterSlave/README.md
@@ -11,7 +11,7 @@ Once the master ends the transaction, the data received by the master and the sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/SPI_MasterSlave/project.mk b/Examples/MAX32662/SPI_MasterSlave/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/SPI_MasterSlave/project.mk
+++ b/Examples/MAX32662/SPI_MasterSlave/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/TMR/.vscode/README.md b/Examples/MAX32662/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/TMR/.vscode/README.md
+++ b/Examples/MAX32662/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/TMR/.vscode/settings.json b/Examples/MAX32662/TMR/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/TMR/.vscode/settings.json
+++ b/Examples/MAX32662/TMR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/TMR/Makefile b/Examples/MAX32662/TMR/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/TMR/Makefile
+++ b/Examples/MAX32662/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/TMR/README.md b/Examples/MAX32662/TMR/README.md
index 25076720ee..7cf3f0f260 100644
--- a/Examples/MAX32662/TMR/README.md
+++ b/Examples/MAX32662/TMR/README.md
@@ -13,7 +13,7 @@ Push SW2 to start the oneshot timer.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/TMR/project.mk b/Examples/MAX32662/TMR/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/TMR/project.mk
+++ b/Examples/MAX32662/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Temp_Monitor/.vscode/README.md b/Examples/MAX32662/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX32662/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Temp_Monitor/.vscode/settings.json b/Examples/MAX32662/Temp_Monitor/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX32662/Temp_Monitor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Temp_Monitor/Makefile b/Examples/MAX32662/Temp_Monitor/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Temp_Monitor/Makefile
+++ b/Examples/MAX32662/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Temp_Monitor/README.md b/Examples/MAX32662/Temp_Monitor/README.md
index 25b612fc2e..10edd9b211 100644
--- a/Examples/MAX32662/Temp_Monitor/README.md
+++ b/Examples/MAX32662/Temp_Monitor/README.md
@@ -15,7 +15,7 @@ The temperature limits, flash storage page, and RTC time-of-day alarm period are
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Temp_Monitor/project.mk b/Examples/MAX32662/Temp_Monitor/project.mk
index afa282f40e..d150294659 100644
--- a/Examples/MAX32662/Temp_Monitor/project.mk
+++ b/Examples/MAX32662/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/UART/.vscode/README.md b/Examples/MAX32662/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/UART/.vscode/README.md
+++ b/Examples/MAX32662/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/UART/.vscode/settings.json b/Examples/MAX32662/UART/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/UART/.vscode/settings.json
+++ b/Examples/MAX32662/UART/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/UART/Makefile b/Examples/MAX32662/UART/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/UART/Makefile
+++ b/Examples/MAX32662/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/UART/README.md b/Examples/MAX32662/UART/README.md
index c7b74564ca..be7a6afd7c 100644
--- a/Examples/MAX32662/UART/README.md
+++ b/Examples/MAX32662/UART/README.md
@@ -7,7 +7,7 @@ This application uses two serial ports to send and receive data. One serial por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/UART/project.mk b/Examples/MAX32662/UART/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/UART/project.mk
+++ b/Examples/MAX32662/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/UART_Wakeup/.vscode/README.md b/Examples/MAX32662/UART_Wakeup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/UART_Wakeup/.vscode/README.md
+++ b/Examples/MAX32662/UART_Wakeup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/UART_Wakeup/.vscode/settings.json b/Examples/MAX32662/UART_Wakeup/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/UART_Wakeup/.vscode/settings.json
+++ b/Examples/MAX32662/UART_Wakeup/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/UART_Wakeup/Makefile b/Examples/MAX32662/UART_Wakeup/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/UART_Wakeup/Makefile
+++ b/Examples/MAX32662/UART_Wakeup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/UART_Wakeup/README.md b/Examples/MAX32662/UART_Wakeup/README.md
index a468226600..11e8b60224 100644
--- a/Examples/MAX32662/UART_Wakeup/README.md
+++ b/Examples/MAX32662/UART_Wakeup/README.md
@@ -7,7 +7,7 @@ This application uses two serial ports to send and receive data. One serial por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/UART_Wakeup/project.mk b/Examples/MAX32662/UART_Wakeup/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/UART_Wakeup/project.mk
+++ b/Examples/MAX32662/UART_Wakeup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/UCL/README.md b/Examples/MAX32662/UCL/README.md
index 37fc0bd5be..e3e1758551 100644
--- a/Examples/MAX32662/UCL/README.md
+++ b/Examples/MAX32662/UCL/README.md
@@ -9,7 +9,7 @@ TODO:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/UCL/project.mk b/Examples/MAX32662/UCL/project.mk
index e0e2eca905..62c6aa45bf 100644
--- a/Examples/MAX32662/UCL/project.mk
+++ b/Examples/MAX32662/UCL/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/Watchdog/.vscode/README.md b/Examples/MAX32662/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/Watchdog/.vscode/README.md
+++ b/Examples/MAX32662/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/Watchdog/.vscode/settings.json b/Examples/MAX32662/Watchdog/.vscode/settings.json
index 915f6bec99..8c8cbe1465 100755
--- a/Examples/MAX32662/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32662/Watchdog/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/Watchdog/Makefile b/Examples/MAX32662/Watchdog/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/Watchdog/Makefile
+++ b/Examples/MAX32662/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/Watchdog/README.md b/Examples/MAX32662/Watchdog/README.md
index b49e7dcb88..e8de96ff09 100644
--- a/Examples/MAX32662/Watchdog/README.md
+++ b/Examples/MAX32662/Watchdog/README.md
@@ -14,7 +14,7 @@ After pressing SW2:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32662/Watchdog/project.mk b/Examples/MAX32662/Watchdog/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32662/Watchdog/project.mk
+++ b/Examples/MAX32662/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32662/WearLeveling/.vscode/README.md b/Examples/MAX32662/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32662/WearLeveling/.vscode/README.md
+++ b/Examples/MAX32662/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32662/WearLeveling/.vscode/settings.json b/Examples/MAX32662/WearLeveling/.vscode/settings.json
index 651dee2113..8dc31d77df 100755
--- a/Examples/MAX32662/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX32662/WearLeveling/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32662/WearLeveling/Makefile b/Examples/MAX32662/WearLeveling/Makefile
index 6be8beff91..1878fbdeb1 100644
--- a/Examples/MAX32662/WearLeveling/Makefile
+++ b/Examples/MAX32662/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32662/WearLeveling/README.md b/Examples/MAX32662/WearLeveling/README.md
index 65a05e3d07..ece00baeb2 100644
--- a/Examples/MAX32662/WearLeveling/README.md
+++ b/Examples/MAX32662/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32662EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32662EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32662/WearLeveling/project.mk b/Examples/MAX32662/WearLeveling/project.mk
index 1cd2244f45..3137986a32 100644
--- a/Examples/MAX32662/WearLeveling/project.mk
+++ b/Examples/MAX32662/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32665/ADC/.vscode/README.md b/Examples/MAX32665/ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ADC/.vscode/README.md
+++ b/Examples/MAX32665/ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ADC/.vscode/settings.json b/Examples/MAX32665/ADC/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/ADC/.vscode/settings.json
+++ b/Examples/MAX32665/ADC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/ADC/Makefile b/Examples/MAX32665/ADC/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/ADC/Makefile
+++ b/Examples/MAX32665/ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ADC/README.md b/Examples/MAX32665/ADC/README.md
index 69ee2c1275..11220de8ad 100644
--- a/Examples/MAX32665/ADC/README.md
+++ b/Examples/MAX32665/ADC/README.md
@@ -11,7 +11,7 @@ Any reading that exceeds the full-scale value of the ADC will have an '*' append
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/ADC/project.mk b/Examples/MAX32665/ADC/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/ADC/project.mk
+++ b/Examples/MAX32665/ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/ADT7320_TempMonitor/.vscode/README.md b/Examples/MAX32665/ADT7320_TempMonitor/.vscode/README.md
index 58733e941c..90fbcefc65 100644
--- a/Examples/MAX32665/ADT7320_TempMonitor/.vscode/README.md
+++ b/Examples/MAX32665/ADT7320_TempMonitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ADT7320_TempMonitor/.vscode/settings.json b/Examples/MAX32665/ADT7320_TempMonitor/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/ADT7320_TempMonitor/.vscode/settings.json
+++ b/Examples/MAX32665/ADT7320_TempMonitor/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/ADT7320_TempMonitor/Makefile b/Examples/MAX32665/ADT7320_TempMonitor/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/ADT7320_TempMonitor/Makefile
+++ b/Examples/MAX32665/ADT7320_TempMonitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ADT7320_TempMonitor/README.md b/Examples/MAX32665/ADT7320_TempMonitor/README.md
index 4cd1058050..a1e91fa23f 100644
--- a/Examples/MAX32665/ADT7320_TempMonitor/README.md
+++ b/Examples/MAX32665/ADT7320_TempMonitor/README.md
@@ -7,7 +7,7 @@ This example reads the temperature data from ADT7320 via SPI and writes it to th
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/ADT7320_TempMonitor/project.mk b/Examples/MAX32665/ADT7320_TempMonitor/project.mk
index 032450c807..1247070a38 100644
--- a/Examples/MAX32665/ADT7320_TempMonitor/project.mk
+++ b/Examples/MAX32665/ADT7320_TempMonitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/AES/.vscode/README.md b/Examples/MAX32665/AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/AES/.vscode/README.md
+++ b/Examples/MAX32665/AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/AES/.vscode/settings.json b/Examples/MAX32665/AES/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/AES/.vscode/settings.json
+++ b/Examples/MAX32665/AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/AES/Makefile b/Examples/MAX32665/AES/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/AES/Makefile
+++ b/Examples/MAX32665/AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/AES/README.md b/Examples/MAX32665/AES/README.md
index 6784eded8d..6e0aff0235 100644
--- a/Examples/MAX32665/AES/README.md
+++ b/Examples/MAX32665/AES/README.md
@@ -7,7 +7,7 @@ This application demonstrates both encryption and decryption using AES. A block
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/AES/project.mk b/Examples/MAX32665/AES/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/AES/project.mk
+++ b/Examples/MAX32665/AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/ARM-DSP/README.md b/Examples/MAX32665/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32665/ARM-DSP/README.md
+++ b/Examples/MAX32665/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_bayes_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_bayes_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_convolution_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_convolution_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_fir_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_fir_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_matrix_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_matrix_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_svm_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_svm_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32665/ARM-DSP/arm_variance_example/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32665/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX32665/ARM-DSP/arm_variance_example/project.mk
index 4185197a08..22cc7b7931 100644
--- a/Examples/MAX32665/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX32665/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32665/AUDIO_Playback/.vscode/README.md b/Examples/MAX32665/AUDIO_Playback/.vscode/README.md
index 58733e941c..90fbcefc65 100644
--- a/Examples/MAX32665/AUDIO_Playback/.vscode/README.md
+++ b/Examples/MAX32665/AUDIO_Playback/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/AUDIO_Playback/.vscode/settings.json b/Examples/MAX32665/AUDIO_Playback/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/AUDIO_Playback/.vscode/settings.json
+++ b/Examples/MAX32665/AUDIO_Playback/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/AUDIO_Playback/Makefile b/Examples/MAX32665/AUDIO_Playback/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/AUDIO_Playback/Makefile
+++ b/Examples/MAX32665/AUDIO_Playback/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/AUDIO_Playback/README.md b/Examples/MAX32665/AUDIO_Playback/README.md
index c30d00e006..88c2b6d649 100644
--- a/Examples/MAX32665/AUDIO_Playback/README.md
+++ b/Examples/MAX32665/AUDIO_Playback/README.md
@@ -6,7 +6,7 @@ This example utilizes the audio subsystem peripheral to receive and transmit aud
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/AUDIO_Playback/project.mk b/Examples/MAX32665/AUDIO_Playback/project.mk
index b2593087d5..dffb4f6995 100644
--- a/Examples/MAX32665/AUDIO_Playback/project.mk
+++ b/Examples/MAX32665/AUDIO_Playback/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/BLE4_ctr/Makefile b/Examples/MAX32665/Bluetooth/BLE4_ctr/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE4_ctr/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE4_ctr/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE4_ctr/README.md b/Examples/MAX32665/Bluetooth/BLE4_ctr/README.md
index cbe8d3fa72..c4f5a8d9c5 100644
--- a/Examples/MAX32665/Bluetooth/BLE4_ctr/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE4_ctr/README.md
@@ -8,7 +8,7 @@ Refer to the [BLE4_ctr](../../../Libraries/Cordio/docs/Applications/BLE4_ctr.md)
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32665/Bluetooth/BLE4_ctr/project.mk b/Examples/MAX32665/Bluetooth/BLE4_ctr/project.mk
index 776095b24e..93aadf8292 100644
--- a/Examples/MAX32665/Bluetooth/BLE4_ctr/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE4_ctr/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/BLE5_ctr/Makefile b/Examples/MAX32665/Bluetooth/BLE5_ctr/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE5_ctr/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE5_ctr/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE5_ctr/README.md b/Examples/MAX32665/Bluetooth/BLE5_ctr/README.md
index aced5a086c..191671182f 100644
--- a/Examples/MAX32665/Bluetooth/BLE5_ctr/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE5_ctr/README.md
@@ -8,7 +8,7 @@ Refer to the [BLE5_ctr](../../../Libraries/Cordio/docs/Applications/BLE5_ctr.md)
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
- Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32665/Bluetooth/BLE5_ctr/project.mk b/Examples/MAX32665/Bluetooth/BLE5_ctr/project.mk
index 47904b8a78..ee96f2a59d 100644
--- a/Examples/MAX32665/Bluetooth/BLE5_ctr/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE5_ctr/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/settings.json
index d306887b93..9ab1aa5492 100755
--- a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -66,7 +67,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/hci/exactle",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include/util",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -80,6 +80,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -95,7 +96,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/platform/targets/maxim/max32665/sources",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/Makefile b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/README.md b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/README.md
index 49dfa90e34..0d746bf523 100644
--- a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/README.md
@@ -7,7 +7,7 @@ Refer to the [BLE_FreeRTOS](../../../Libraries/Cordio/docs/Applications/BLE_Free
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/project.mk b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/project.mk
index 712291020f..e93f8d9f18 100644
--- a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/settings.json
index e960ba3a43..fa99c60209 100755
--- a/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -66,7 +67,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/hci/exactle",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include/util",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -77,6 +77,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -92,7 +93,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/platform/targets/maxim/max32665/sources",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Central/Makefile b/Examples/MAX32665/Bluetooth/BLE_LR_Central/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_LR_Central/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_LR_Central/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Central/README.md b/Examples/MAX32665/Bluetooth/BLE_LR_Central/README.md
index 4fbf21c093..e0e4d66162 100644
--- a/Examples/MAX32665/Bluetooth/BLE_LR_Central/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_LR_Central/README.md
@@ -8,7 +8,7 @@ The project is modified from the BLE_datc.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Central/project.mk b/Examples/MAX32665/Bluetooth/BLE_LR_Central/project.mk
index e66f9057ee..08dab61991 100644
--- a/Examples/MAX32665/Bluetooth/BLE_LR_Central/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_LR_Central/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/Makefile b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/README.md b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/README.md
index 485671a6e0..8fb9b9a5ca 100644
--- a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/README.md
@@ -6,7 +6,7 @@ The project is modified from the BLE_fit project. It works with the BLE_LR_Centr
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/project.mk b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/project.mk
index 1c456bfc4c..5dc90656a7 100644
--- a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/BLE_datc/Makefile b/Examples/MAX32665/Bluetooth/BLE_datc/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_datc/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_datc/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_datc/README.md b/Examples/MAX32665/Bluetooth/BLE_datc/README.md
index 5f94ffd77c..0cc9e58268 100644
--- a/Examples/MAX32665/Bluetooth/BLE_datc/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_datc/README.md
@@ -6,7 +6,7 @@ Refer to the [BLE_datc_dats](../../../Libraries/Cordio/docs/Applications/BLE_dat
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32665/Bluetooth/BLE_datc/project.mk b/Examples/MAX32665/Bluetooth/BLE_datc/project.mk
index e66f9057ee..08dab61991 100644
--- a/Examples/MAX32665/Bluetooth/BLE_datc/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_datc/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/BLE_dats/Makefile b/Examples/MAX32665/Bluetooth/BLE_dats/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_dats/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_dats/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_dats/README.md b/Examples/MAX32665/Bluetooth/BLE_dats/README.md
index b1a0fc53b9..a009eba192 100644
--- a/Examples/MAX32665/Bluetooth/BLE_dats/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_dats/README.md
@@ -6,7 +6,7 @@ Refer to the [BLE_datc_dats](../../../Libraries/Cordio/docs/Applications/BLE_dat
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32665/Bluetooth/BLE_dats/project.mk b/Examples/MAX32665/Bluetooth/BLE_dats/project.mk
index f9d8b6a1d5..ad2f370e32 100644
--- a/Examples/MAX32665/Bluetooth/BLE_dats/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_dats/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/BLE_fcc/Makefile b/Examples/MAX32665/Bluetooth/BLE_fcc/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_fcc/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_fcc/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_fcc/README.md b/Examples/MAX32665/Bluetooth/BLE_fcc/README.md
index dba4d7ea90..54a01b9791 100644
--- a/Examples/MAX32665/Bluetooth/BLE_fcc/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_fcc/README.md
@@ -7,7 +7,7 @@ Refer to [BLE_fcc](../../../Libraries/Cordio/docs/Applications/BLE_fcc.md) docum
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
## Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32665/Bluetooth/BLE_fcc/project.mk b/Examples/MAX32665/Bluetooth/BLE_fcc/project.mk
index 6d6f2759d9..8a52cb8ee8 100644
--- a/Examples/MAX32665/Bluetooth/BLE_fcc/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_fcc/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/BLE_fit/Makefile b/Examples/MAX32665/Bluetooth/BLE_fit/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_fit/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_fit/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_fit/README.md b/Examples/MAX32665/Bluetooth/BLE_fit/README.md
index f8be5bfe51..ca79c282d0 100644
--- a/Examples/MAX32665/Bluetooth/BLE_fit/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_fit/README.md
@@ -6,7 +6,7 @@ Refer to [BLE_fit](../../../Libraries/Cordio/docs/Applications/BLE_fit.md) docum
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32665/Bluetooth/BLE_fit/project.mk b/Examples/MAX32665/Bluetooth/BLE_fit/project.mk
index 1c456bfc4c..5dc90656a7 100644
--- a/Examples/MAX32665/Bluetooth/BLE_fit/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_fit/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/BLE_mcs/Makefile b/Examples/MAX32665/Bluetooth/BLE_mcs/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_mcs/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_mcs/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_mcs/README.md b/Examples/MAX32665/Bluetooth/BLE_mcs/README.md
index a693404310..da73f1056a 100644
--- a/Examples/MAX32665/Bluetooth/BLE_mcs/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_mcs/README.md
@@ -8,7 +8,7 @@ Refer to the [BLE_mcs](../../../Libraries/Cordio/docs/Applications/BLE_mcs.md) d
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32665/Bluetooth/BLE_mcs/project.mk b/Examples/MAX32665/Bluetooth/BLE_mcs/project.mk
index ddb77480b9..ef2e8be334 100644
--- a/Examples/MAX32665/Bluetooth/BLE_mcs/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_mcs/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/BLE_otac/Makefile b/Examples/MAX32665/Bluetooth/BLE_otac/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_otac/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_otac/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_otac/README.md b/Examples/MAX32665/Bluetooth/BLE_otac/README.md
index 40582c28fc..06a0de9f5e 100644
--- a/Examples/MAX32665/Bluetooth/BLE_otac/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_otac/README.md
@@ -11,7 +11,7 @@ Refer to the [BLE_otac_otas](../../../Libraries/Cordio/docs/Applications/BLE_ota
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32665/Bluetooth/BLE_otac/project.mk b/Examples/MAX32665/Bluetooth/BLE_otac/project.mk
index f9a2484828..59dca33d59 100644
--- a/Examples/MAX32665/Bluetooth/BLE_otac/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_otac/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/settings.json
index e960ba3a43..fa99c60209 100755
--- a/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -66,7 +67,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/hci/exactle",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include/util",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -77,6 +77,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -92,7 +93,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/platform/targets/maxim/max32665/sources",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Bluetooth/BLE_otas/Makefile b/Examples/MAX32665/Bluetooth/BLE_otas/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_otas/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_otas/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_otas/README.md b/Examples/MAX32665/Bluetooth/BLE_otas/README.md
index 1167202c17..299669aa7f 100644
--- a/Examples/MAX32665/Bluetooth/BLE_otas/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_otas/README.md
@@ -11,7 +11,7 @@ Refer to the [BLE_otac_otas](../../../Libraries/Cordio/docs/Applications/BLE_ota
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
## Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32665/Bluetooth/BLE_otas/project.mk b/Examples/MAX32665/Bluetooth/BLE_otas/project.mk
index 035ddca4d2..f8a248e2f9 100644
--- a/Examples/MAX32665/Bluetooth/BLE_otas/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_otas/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/settings.json b/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/BLE_periph/Makefile b/Examples/MAX32665/Bluetooth/BLE_periph/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/BLE_periph/Makefile
+++ b/Examples/MAX32665/Bluetooth/BLE_periph/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/BLE_periph/README.md b/Examples/MAX32665/Bluetooth/BLE_periph/README.md
index f825b4d0c1..ceca4c7905 100644
--- a/Examples/MAX32665/Bluetooth/BLE_periph/README.md
+++ b/Examples/MAX32665/Bluetooth/BLE_periph/README.md
@@ -5,7 +5,7 @@ Refer to the [BLE_periph](../../../Libraries/Cordio/docs/Applications/BLE_periph
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector. An anteanna or wired connection can be used if SMA is available on the board.
diff --git a/Examples/MAX32665/Bluetooth/BLE_periph/project.mk b/Examples/MAX32665/Bluetooth/BLE_periph/project.mk
index 1c456bfc4c..5dc90656a7 100644
--- a/Examples/MAX32665/Bluetooth/BLE_periph/project.mk
+++ b/Examples/MAX32665/Bluetooth/BLE_periph/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/Bootloader/.vscode/README.md b/Examples/MAX32665/Bluetooth/Bootloader/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/Bootloader/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/Bootloader/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/Bootloader/.vscode/settings.json b/Examples/MAX32665/Bluetooth/Bootloader/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/Bluetooth/Bootloader/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/Bootloader/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Bluetooth/Bootloader/Makefile b/Examples/MAX32665/Bluetooth/Bootloader/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/Bootloader/Makefile
+++ b/Examples/MAX32665/Bluetooth/Bootloader/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/Bootloader/README.md b/Examples/MAX32665/Bluetooth/Bootloader/README.md
index f29fdec995..2470f1b421 100644
--- a/Examples/MAX32665/Bluetooth/Bootloader/README.md
+++ b/Examples/MAX32665/Bluetooth/Bootloader/README.md
@@ -40,7 +40,7 @@ Plesae note that: depend on your LED0/LED1 pin connection on your board, you mig
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Bluetooth/Bootloader/project.mk b/Examples/MAX32665/Bluetooth/Bootloader/project.mk
index 4cff76af8d..5543a8ea6d 100644
--- a/Examples/MAX32665/Bluetooth/Bootloader/project.mk
+++ b/Examples/MAX32665/Bluetooth/Bootloader/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/README.md b/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/settings.json b/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/settings.json
index 2953e950b3..935e15b005 100755
--- a/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Bluetooth/Bootloader_Host/Makefile b/Examples/MAX32665/Bluetooth/Bootloader_Host/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/Bootloader_Host/Makefile
+++ b/Examples/MAX32665/Bluetooth/Bootloader_Host/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Bluetooth/Bootloader_Host/README.md b/Examples/MAX32665/Bluetooth/Bootloader_Host/README.md
index d926c156b5..219123e4c1 100644
--- a/Examples/MAX32665/Bluetooth/Bootloader_Host/README.md
+++ b/Examples/MAX32665/Bluetooth/Bootloader_Host/README.md
@@ -23,7 +23,7 @@ flash based bootloader. It is designed to easily be ported on any micro.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Bluetooth/Bootloader_Host/project.mk b/Examples/MAX32665/Bluetooth/Bootloader_Host/project.mk
index 672d9ae92e..67bc17b02f 100644
--- a/Examples/MAX32665/Bluetooth/Bootloader_Host/project.mk
+++ b/Examples/MAX32665/Bluetooth/Bootloader_Host/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Bluetooth/RF_Test/.cproject b/Examples/MAX32665/Bluetooth/RF_Test/.cproject
index ee49230558..4772a3777b 100644
--- a/Examples/MAX32665/Bluetooth/RF_Test/.cproject
+++ b/Examples/MAX32665/Bluetooth/RF_Test/.cproject
@@ -32,7 +32,8 @@
-
+
+
diff --git a/Examples/MAX32665/Bluetooth/RF_Test/.vscode/README.md b/Examples/MAX32665/Bluetooth/RF_Test/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Bluetooth/RF_Test/.vscode/README.md
+++ b/Examples/MAX32665/Bluetooth/RF_Test/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Bluetooth/RF_Test/.vscode/settings.json b/Examples/MAX32665/Bluetooth/RF_Test/.vscode/settings.json
index d306887b93..48f71395cc 100755
--- a/Examples/MAX32665/Bluetooth/RF_Test/.vscode/settings.json
+++ b/Examples/MAX32665/Bluetooth/RF_Test/.vscode/settings.json
@@ -48,11 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
+ "${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/include",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/stack/cfg",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-mesh-apps/include",
@@ -66,7 +68,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/hci/exactle",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include",
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/include/util",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -80,11 +81,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
+ "${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-apps/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-mesh-apps/sources",
@@ -95,7 +98,6 @@
"${config:MAXIM_PATH}/Libraries/Cordio/wsf/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/platform/targets/maxim/max32665/sources",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32665/Bluetooth/RF_Test/Makefile b/Examples/MAX32665/Bluetooth/RF_Test/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/Bluetooth/RF_Test/Makefile
+++ b/Examples/MAX32665/Bluetooth/RF_Test/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/CRC/.vscode/README.md b/Examples/MAX32665/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/CRC/.vscode/README.md
+++ b/Examples/MAX32665/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/CRC/.vscode/settings.json b/Examples/MAX32665/CRC/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/CRC/.vscode/settings.json
+++ b/Examples/MAX32665/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/CRC/Makefile b/Examples/MAX32665/CRC/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/CRC/Makefile
+++ b/Examples/MAX32665/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/CRC/README.md b/Examples/MAX32665/CRC/README.md
index a4981933e2..ec107d5a9b 100644
--- a/Examples/MAX32665/CRC/README.md
+++ b/Examples/MAX32665/CRC/README.md
@@ -7,7 +7,7 @@ This example demonstrates the use of the HW CRC calculator. The example first g
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/CRC/project.mk b/Examples/MAX32665/CRC/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/CRC/project.mk
+++ b/Examples/MAX32665/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Coremark/.vscode/README.md b/Examples/MAX32665/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Coremark/.vscode/README.md
+++ b/Examples/MAX32665/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Coremark/.vscode/settings.json b/Examples/MAX32665/Coremark/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/Coremark/.vscode/settings.json
+++ b/Examples/MAX32665/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Coremark/Makefile b/Examples/MAX32665/Coremark/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Coremark/Makefile
+++ b/Examples/MAX32665/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Coremark/README.md b/Examples/MAX32665/Coremark/README.md
index fb325b3210..0c56865223 100644
--- a/Examples/MAX32665/Coremark/README.md
+++ b/Examples/MAX32665/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Coremark/project.mk b/Examples/MAX32665/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32665/Coremark/project.mk
+++ b/Examples/MAX32665/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/DES/.vscode/README.md b/Examples/MAX32665/DES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/DES/.vscode/README.md
+++ b/Examples/MAX32665/DES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/DES/.vscode/settings.json b/Examples/MAX32665/DES/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/DES/.vscode/settings.json
+++ b/Examples/MAX32665/DES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/DES/Makefile b/Examples/MAX32665/DES/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/DES/Makefile
+++ b/Examples/MAX32665/DES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/DES/README.md b/Examples/MAX32665/DES/README.md
index 7d904efffc..2e50641b2a 100644
--- a/Examples/MAX32665/DES/README.md
+++ b/Examples/MAX32665/DES/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/DES/project.mk b/Examples/MAX32665/DES/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/DES/project.mk
+++ b/Examples/MAX32665/DES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/DMA/.vscode/README.md b/Examples/MAX32665/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/DMA/.vscode/README.md
+++ b/Examples/MAX32665/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/DMA/.vscode/settings.json b/Examples/MAX32665/DMA/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/DMA/.vscode/settings.json
+++ b/Examples/MAX32665/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/DMA/Makefile b/Examples/MAX32665/DMA/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/DMA/Makefile
+++ b/Examples/MAX32665/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/DMA/README.md b/Examples/MAX32665/DMA/README.md
index 523c937010..b944330e45 100644
--- a/Examples/MAX32665/DMA/README.md
+++ b/Examples/MAX32665/DMA/README.md
@@ -9,7 +9,7 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/DMA/project.mk b/Examples/MAX32665/DMA/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/DMA/project.mk
+++ b/Examples/MAX32665/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Demo/.vscode/README.md b/Examples/MAX32665/Demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Demo/.vscode/README.md
+++ b/Examples/MAX32665/Demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Demo/.vscode/settings.json b/Examples/MAX32665/Demo/.vscode/settings.json
index 3a52283e0d..4be1bd3bdc 100755
--- a/Examples/MAX32665/Demo/.vscode/settings.json
+++ b/Examples/MAX32665/Demo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src/**",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,6 +67,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -75,7 +76,6 @@
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src/**",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Demo/Makefile b/Examples/MAX32665/Demo/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Demo/Makefile
+++ b/Examples/MAX32665/Demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Demo/README.md b/Examples/MAX32665/Demo/README.md
index 3c0effa843..cb9c8c6f18 100644
--- a/Examples/MAX32665/Demo/README.md
+++ b/Examples/MAX32665/Demo/README.md
@@ -16,7 +16,7 @@ Please check project.mk to learn how compile lvgl in MSDK
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Demo/project.mk b/Examples/MAX32665/Demo/project.mk
index 1a24e94e69..eb5832d2d4 100644
--- a/Examples/MAX32665/Demo/project.mk
+++ b/Examples/MAX32665/Demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Display/.vscode/README.md b/Examples/MAX32665/Display/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Display/.vscode/README.md
+++ b/Examples/MAX32665/Display/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Display/.vscode/settings.json b/Examples/MAX32665/Display/.vscode/settings.json
index 3a52283e0d..4be1bd3bdc 100755
--- a/Examples/MAX32665/Display/.vscode/settings.json
+++ b/Examples/MAX32665/Display/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src/**",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,6 +67,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -75,7 +76,6 @@
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src/**",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Display/Makefile b/Examples/MAX32665/Display/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Display/Makefile
+++ b/Examples/MAX32665/Display/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Display/README.md b/Examples/MAX32665/Display/README.md
index 5dd21c12ad..9d92861007 100644
--- a/Examples/MAX32665/Display/README.md
+++ b/Examples/MAX32665/Display/README.md
@@ -16,7 +16,7 @@ Please check project.mk to learn how compile lvgl in MSDK
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Display/project.mk b/Examples/MAX32665/Display/project.mk
index 416ea3ac0d..f079e2a10e 100644
--- a/Examples/MAX32665/Display/project.mk
+++ b/Examples/MAX32665/Display/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/ECC/.vscode/README.md b/Examples/MAX32665/ECC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ECC/.vscode/README.md
+++ b/Examples/MAX32665/ECC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ECC/.vscode/settings.json b/Examples/MAX32665/ECC/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/ECC/.vscode/settings.json
+++ b/Examples/MAX32665/ECC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/ECC/Makefile b/Examples/MAX32665/ECC/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/ECC/Makefile
+++ b/Examples/MAX32665/ECC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ECC/README.md b/Examples/MAX32665/ECC/README.md
index 27a6224f56..b010c29374 100644
--- a/Examples/MAX32665/ECC/README.md
+++ b/Examples/MAX32665/ECC/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/ECC/project.mk b/Examples/MAX32665/ECC/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/ECC/project.mk
+++ b/Examples/MAX32665/ECC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32665/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32665/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32665/EEPROM_Emulator/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32665/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/EEPROM_Emulator/Makefile b/Examples/MAX32665/EEPROM_Emulator/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32665/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/EEPROM_Emulator/README.md b/Examples/MAX32665/EEPROM_Emulator/README.md
index 199aae1d4f..fc55a2d54d 100644
--- a/Examples/MAX32665/EEPROM_Emulator/README.md
+++ b/Examples/MAX32665/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32665 to emulate a 32KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -48,7 +48,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/EEPROM_Emulator/project.mk b/Examples/MAX32665/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32665/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32665/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Flash/.vscode/README.md b/Examples/MAX32665/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Flash/.vscode/README.md
+++ b/Examples/MAX32665/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Flash/.vscode/settings.json b/Examples/MAX32665/Flash/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/Flash/.vscode/settings.json
+++ b/Examples/MAX32665/Flash/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Flash/Makefile b/Examples/MAX32665/Flash/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Flash/Makefile
+++ b/Examples/MAX32665/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Flash/README.md b/Examples/MAX32665/Flash/README.md
index e4a658f399..9bd8b47a4a 100644
--- a/Examples/MAX32665/Flash/README.md
+++ b/Examples/MAX32665/Flash/README.md
@@ -21,7 +21,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -37,7 +37,7 @@ MAX32665EVKIT:
## Building and Running
-**See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
+**See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
## Expected Output
diff --git a/Examples/MAX32665/Flash/project.mk b/Examples/MAX32665/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32665/Flash/project.mk
+++ b/Examples/MAX32665/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Flash_CLI/.vscode/README.md b/Examples/MAX32665/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32665/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Flash_CLI/.vscode/settings.json b/Examples/MAX32665/Flash_CLI/.vscode/settings.json
index 011e359899..fa2d5ded89 100755
--- a/Examples/MAX32665/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32665/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Flash_CLI/Makefile b/Examples/MAX32665/Flash_CLI/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Flash_CLI/Makefile
+++ b/Examples/MAX32665/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Flash_CLI/README.md b/Examples/MAX32665/Flash_CLI/README.md
index 6f5da7abc1..f531365441 100644
--- a/Examples/MAX32665/Flash_CLI/README.md
+++ b/Examples/MAX32665/Flash_CLI/README.md
@@ -9,7 +9,7 @@ This example demonstates the CLI commands feature of FreeRTOS, various features
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Flash_CLI/project.mk b/Examples/MAX32665/Flash_CLI/project.mk
index 0377f6c326..c0903b97ab 100644
--- a/Examples/MAX32665/Flash_CLI/project.mk
+++ b/Examples/MAX32665/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32665/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX32665/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX32665/FreeRTOSDemo/.vscode/settings.json
index 6d1e33f052..21012d36ca 100755
--- a/Examples/MAX32665/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX32665/FreeRTOSDemo/.vscode/settings.json
@@ -48,13 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -68,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -75,7 +76,6 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32665/FreeRTOSDemo/Makefile b/Examples/MAX32665/FreeRTOSDemo/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/FreeRTOSDemo/Makefile
+++ b/Examples/MAX32665/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/FreeRTOSDemo/README.md b/Examples/MAX32665/FreeRTOSDemo/README.md
index 20cd673030..02e5d9992f 100644
--- a/Examples/MAX32665/FreeRTOSDemo/README.md
+++ b/Examples/MAX32665/FreeRTOSDemo/README.md
@@ -7,7 +7,7 @@ A basic getting started application for FreeRTOS.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/FreeRTOSDemo/project.mk b/Examples/MAX32665/FreeRTOSDemo/project.mk
index 0377f6c326..c0903b97ab 100644
--- a/Examples/MAX32665/FreeRTOSDemo/project.mk
+++ b/Examples/MAX32665/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/GPIO/.vscode/README.md b/Examples/MAX32665/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/GPIO/.vscode/README.md
+++ b/Examples/MAX32665/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/GPIO/.vscode/settings.json b/Examples/MAX32665/GPIO/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/GPIO/.vscode/settings.json
+++ b/Examples/MAX32665/GPIO/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/GPIO/Makefile b/Examples/MAX32665/GPIO/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/GPIO/Makefile
+++ b/Examples/MAX32665/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/GPIO/README.md b/Examples/MAX32665/GPIO/README.md
index 93bb873de2..50a2fd6235 100644
--- a/Examples/MAX32665/GPIO/README.md
+++ b/Examples/MAX32665/GPIO/README.md
@@ -12,7 +12,7 @@ Please check the board.c file in ${MSDKPath}\Libraries\Boards\MAX32665\${BoardNa
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/GPIO/project.mk b/Examples/MAX32665/GPIO/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/GPIO/project.mk
+++ b/Examples/MAX32665/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/HTMR/.vscode/README.md b/Examples/MAX32665/HTMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/HTMR/.vscode/README.md
+++ b/Examples/MAX32665/HTMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/HTMR/.vscode/settings.json b/Examples/MAX32665/HTMR/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/HTMR/.vscode/settings.json
+++ b/Examples/MAX32665/HTMR/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/HTMR/Makefile b/Examples/MAX32665/HTMR/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/HTMR/Makefile
+++ b/Examples/MAX32665/HTMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/HTMR/README.md b/Examples/MAX32665/HTMR/README.md
index 121519bd54..c6dd2a85fe 100644
--- a/Examples/MAX32665/HTMR/README.md
+++ b/Examples/MAX32665/HTMR/README.md
@@ -10,7 +10,7 @@ This example demonstrates features of HTimer. It sets the short interval alarm t
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/HTMR/project.mk b/Examples/MAX32665/HTMR/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/HTMR/project.mk
+++ b/Examples/MAX32665/HTMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Hash/.vscode/README.md b/Examples/MAX32665/Hash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Hash/.vscode/README.md
+++ b/Examples/MAX32665/Hash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Hash/.vscode/settings.json b/Examples/MAX32665/Hash/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/Hash/.vscode/settings.json
+++ b/Examples/MAX32665/Hash/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Hash/Makefile b/Examples/MAX32665/Hash/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Hash/Makefile
+++ b/Examples/MAX32665/Hash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Hash/README.md b/Examples/MAX32665/Hash/README.md
index 9cd806d124..d2c557ff45 100644
--- a/Examples/MAX32665/Hash/README.md
+++ b/Examples/MAX32665/Hash/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Hash/main.c b/Examples/MAX32665/Hash/main.c
index e94480e0c2..c47fd626b8 100644
--- a/Examples/MAX32665/Hash/main.c
+++ b/Examples/MAX32665/Hash/main.c
@@ -53,7 +53,6 @@ void ascii_to_byte(const char *src, char *dst, int len)
int Test_Hash(void)
{
- int ret;
printf("Test Hash\n");
unsigned char sha256_msg[] =
diff --git a/Examples/MAX32665/Hash/project.mk b/Examples/MAX32665/Hash/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/Hash/project.mk
+++ b/Examples/MAX32665/Hash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Hello_World/.vscode/README.md b/Examples/MAX32665/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Hello_World/.vscode/README.md
+++ b/Examples/MAX32665/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Hello_World/.vscode/settings.json b/Examples/MAX32665/Hello_World/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32665/Hello_World/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Hello_World/Makefile b/Examples/MAX32665/Hello_World/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Hello_World/Makefile
+++ b/Examples/MAX32665/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Hello_World/README.md b/Examples/MAX32665/Hello_World/README.md
index 9c58be5645..f400fc06af 100644
--- a/Examples/MAX32665/Hello_World/README.md
+++ b/Examples/MAX32665/Hello_World/README.md
@@ -11,7 +11,7 @@ Please check the board.c file in ${MSDKPath}\Libraries\Boards\MAX32665\${BoardNa
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Hello_World/project.mk b/Examples/MAX32665/Hello_World/project.mk
index 31da83e374..92ec793db8 100644
--- a/Examples/MAX32665/Hello_World/project.mk
+++ b/Examples/MAX32665/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32665/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32665/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32665/Hello_World_Cpp/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32665/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/Hello_World_Cpp/Makefile b/Examples/MAX32665/Hello_World_Cpp/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32665/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Hello_World_Cpp/README.md b/Examples/MAX32665/Hello_World_Cpp/README.md
index 848d643184..aebcf30dd6 100644
--- a/Examples/MAX32665/Hello_World_Cpp/README.md
+++ b/Examples/MAX32665/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Hello_World_Cpp/project.mk b/Examples/MAX32665/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32665/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32665/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32665/I2C/.vscode/README.md b/Examples/MAX32665/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/I2C/.vscode/README.md
+++ b/Examples/MAX32665/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/I2C/.vscode/settings.json b/Examples/MAX32665/I2C/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/I2C/.vscode/settings.json
+++ b/Examples/MAX32665/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/I2C/Makefile b/Examples/MAX32665/I2C/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/I2C/Makefile
+++ b/Examples/MAX32665/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/I2C/README.md b/Examples/MAX32665/I2C/README.md
index db6d800213..f3ead47072 100644
--- a/Examples/MAX32665/I2C/README.md
+++ b/Examples/MAX32665/I2C/README.md
@@ -7,7 +7,7 @@ This example uses the I2C Master to read/write from/to the I2C Slave.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/I2C/project.mk b/Examples/MAX32665/I2C/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/I2C/project.mk
+++ b/Examples/MAX32665/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/I2C_MNGR/.vscode/README.md b/Examples/MAX32665/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32665/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/I2C_MNGR/.vscode/settings.json b/Examples/MAX32665/I2C_MNGR/.vscode/settings.json
index 16fa319cde..c35cf7dace 100755
--- a/Examples/MAX32665/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32665/I2C_MNGR/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32665/I2C_MNGR/Makefile b/Examples/MAX32665/I2C_MNGR/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/I2C_MNGR/Makefile
+++ b/Examples/MAX32665/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/I2C_MNGR/README.md b/Examples/MAX32665/I2C_MNGR/README.md
index 46d6245ec2..1e84886ecf 100644
--- a/Examples/MAX32665/I2C_MNGR/README.md
+++ b/Examples/MAX32665/I2C_MNGR/README.md
@@ -11,7 +11,7 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/I2C_MNGR/project.mk b/Examples/MAX32665/I2C_MNGR/project.mk
index 8ea6eba2cd..0acc636712 100644
--- a/Examples/MAX32665/I2C_MNGR/project.mk
+++ b/Examples/MAX32665/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/I2C_SCAN/.vscode/README.md b/Examples/MAX32665/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32665/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/I2C_SCAN/.vscode/settings.json b/Examples/MAX32665/I2C_SCAN/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32665/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/I2C_SCAN/Makefile b/Examples/MAX32665/I2C_SCAN/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/I2C_SCAN/Makefile
+++ b/Examples/MAX32665/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/I2C_SCAN/README.md b/Examples/MAX32665/I2C_SCAN/README.md
index 24458965e3..aaa6e616ea 100644
--- a/Examples/MAX32665/I2C_SCAN/README.md
+++ b/Examples/MAX32665/I2C_SCAN/README.md
@@ -7,7 +7,7 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/I2C_SCAN/project.mk b/Examples/MAX32665/I2C_SCAN/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/I2C_SCAN/project.mk
+++ b/Examples/MAX32665/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/I2C_Sensor/.vscode/README.md b/Examples/MAX32665/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32665/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/I2C_Sensor/.vscode/settings.json b/Examples/MAX32665/I2C_Sensor/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32665/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/I2C_Sensor/Makefile b/Examples/MAX32665/I2C_Sensor/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/I2C_Sensor/Makefile
+++ b/Examples/MAX32665/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/I2C_Sensor/README.md b/Examples/MAX32665/I2C_Sensor/README.md
index a38cd23f8e..51316ed6aa 100644
--- a/Examples/MAX32665/I2C_Sensor/README.md
+++ b/Examples/MAX32665/I2C_Sensor/README.md
@@ -9,7 +9,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/I2C_Sensor/project.mk b/Examples/MAX32665/I2C_Sensor/project.mk
index 19af84a498..3751974fb2 100644
--- a/Examples/MAX32665/I2C_Sensor/project.mk
+++ b/Examples/MAX32665/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/ICC/.vscode/README.md b/Examples/MAX32665/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/ICC/.vscode/README.md
+++ b/Examples/MAX32665/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/ICC/.vscode/settings.json b/Examples/MAX32665/ICC/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/ICC/.vscode/settings.json
+++ b/Examples/MAX32665/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/ICC/Makefile b/Examples/MAX32665/ICC/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/ICC/Makefile
+++ b/Examples/MAX32665/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/ICC/README.md b/Examples/MAX32665/ICC/README.md
index 1bf8c523c7..0f7d5b4542 100644
--- a/Examples/MAX32665/ICC/README.md
+++ b/Examples/MAX32665/ICC/README.md
@@ -12,7 +12,7 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/ICC/project.mk b/Examples/MAX32665/ICC/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/ICC/project.mk
+++ b/Examples/MAX32665/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/LP/.vscode/README.md b/Examples/MAX32665/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/LP/.vscode/README.md
+++ b/Examples/MAX32665/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/LP/.vscode/settings.json b/Examples/MAX32665/LP/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/LP/.vscode/settings.json
+++ b/Examples/MAX32665/LP/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/LP/Makefile b/Examples/MAX32665/LP/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/LP/Makefile
+++ b/Examples/MAX32665/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/LP/README.md b/Examples/MAX32665/LP/README.md
index 2b19963220..073d52a375 100644
--- a/Examples/MAX32665/LP/README.md
+++ b/Examples/MAX32665/LP/README.md
@@ -7,7 +7,7 @@ Example to showcase the lower power modes.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/LP/project.mk b/Examples/MAX32665/LP/project.mk
index d587b982e0..868e848377 100644
--- a/Examples/MAX32665/LP/project.mk
+++ b/Examples/MAX32665/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Library_Generate/.vscode/README.md b/Examples/MAX32665/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32665/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32665/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32665/Library_Generate/Makefile b/Examples/MAX32665/Library_Generate/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Library_Generate/Makefile
+++ b/Examples/MAX32665/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Library_Generate/README.md b/Examples/MAX32665/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32665/Library_Generate/README.md
+++ b/Examples/MAX32665/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Library_Generate/project.mk b/Examples/MAX32665/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32665/Library_Generate/project.mk
+++ b/Examples/MAX32665/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Library_Use/.vscode/README.md b/Examples/MAX32665/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Library_Use/.vscode/README.md
+++ b/Examples/MAX32665/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Library_Use/.vscode/settings.json b/Examples/MAX32665/Library_Use/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32665/Library_Use/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Library_Use/Makefile b/Examples/MAX32665/Library_Use/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Library_Use/Makefile
+++ b/Examples/MAX32665/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Library_Use/README.md b/Examples/MAX32665/Library_Use/README.md
index 53c535adc2..7bc738b762 100644
--- a/Examples/MAX32665/Library_Use/README.md
+++ b/Examples/MAX32665/Library_Use/README.md
@@ -9,11 +9,11 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-This example supports all available MAX32665 evaluation platforms but comes _pre-configured_ for the MAX32666EVKIT by default. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
+This example supports all available MAX32665 evaluation platforms but comes _pre-configured_ for the MAX32666EVKIT by default. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
## Required Connections
diff --git a/Examples/MAX32665/Library_Use/project.mk b/Examples/MAX32665/Library_Use/project.mk
index 29a77de854..50c796a0e9 100644
--- a/Examples/MAX32665/Library_Use/project.mk
+++ b/Examples/MAX32665/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/MAA/.vscode/README.md b/Examples/MAX32665/MAA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/MAA/.vscode/README.md
+++ b/Examples/MAX32665/MAA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/MAA/.vscode/settings.json b/Examples/MAX32665/MAA/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/MAA/.vscode/settings.json
+++ b/Examples/MAX32665/MAA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/MAA/Makefile b/Examples/MAX32665/MAA/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/MAA/Makefile
+++ b/Examples/MAX32665/MAA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/MAA/README.md b/Examples/MAX32665/MAA/README.md
index e2983a39b5..90b12c2e86 100644
--- a/Examples/MAX32665/MAA/README.md
+++ b/Examples/MAX32665/MAA/README.md
@@ -8,7 +8,7 @@ In this particular example the MAA is configured to compute an exponentiation. T
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/MAA/project.mk b/Examples/MAX32665/MAA/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/MAA/project.mk
+++ b/Examples/MAX32665/MAA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/OTP_Dump/.vscode/README.md b/Examples/MAX32665/OTP_Dump/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/OTP_Dump/.vscode/README.md
+++ b/Examples/MAX32665/OTP_Dump/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/OTP_Dump/.vscode/settings.json b/Examples/MAX32665/OTP_Dump/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/OTP_Dump/.vscode/settings.json
+++ b/Examples/MAX32665/OTP_Dump/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/OTP_Dump/Makefile b/Examples/MAX32665/OTP_Dump/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/OTP_Dump/Makefile
+++ b/Examples/MAX32665/OTP_Dump/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/OWM/.vscode/README.md b/Examples/MAX32665/OWM/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/OWM/.vscode/README.md
+++ b/Examples/MAX32665/OWM/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/OWM/.vscode/settings.json b/Examples/MAX32665/OWM/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/OWM/.vscode/settings.json
+++ b/Examples/MAX32665/OWM/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/OWM/Makefile b/Examples/MAX32665/OWM/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/OWM/Makefile
+++ b/Examples/MAX32665/OWM/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/OWM/README.md b/Examples/MAX32665/OWM/README.md
index 8652049b7d..509aded426 100644
--- a/Examples/MAX32665/OWM/README.md
+++ b/Examples/MAX32665/OWM/README.md
@@ -7,7 +7,7 @@ This example demonstrate how 1-Wire master can be configured and read slave ROM
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/OWM/project.mk b/Examples/MAX32665/OWM/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/OWM/project.mk
+++ b/Examples/MAX32665/OWM/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Pulse_Train/.vscode/README.md b/Examples/MAX32665/Pulse_Train/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Pulse_Train/.vscode/README.md
+++ b/Examples/MAX32665/Pulse_Train/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Pulse_Train/.vscode/settings.json b/Examples/MAX32665/Pulse_Train/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/Pulse_Train/.vscode/settings.json
+++ b/Examples/MAX32665/Pulse_Train/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Pulse_Train/Makefile b/Examples/MAX32665/Pulse_Train/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Pulse_Train/Makefile
+++ b/Examples/MAX32665/Pulse_Train/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Pulse_Train/README.md b/Examples/MAX32665/Pulse_Train/README.md
index 0b72c80f07..4c214773e2 100644
--- a/Examples/MAX32665/Pulse_Train/README.md
+++ b/Examples/MAX32665/Pulse_Train/README.md
@@ -11,7 +11,7 @@ The second, PT15 (P1.15) , is set to generate a 10Hz square wave. If you make t
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Pulse_Train/project.mk b/Examples/MAX32665/Pulse_Train/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/Pulse_Train/project.mk
+++ b/Examples/MAX32665/Pulse_Train/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/RPU/.vscode/README.md b/Examples/MAX32665/RPU/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/RPU/.vscode/README.md
+++ b/Examples/MAX32665/RPU/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/RPU/.vscode/settings.json b/Examples/MAX32665/RPU/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/RPU/.vscode/settings.json
+++ b/Examples/MAX32665/RPU/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/RPU/Makefile b/Examples/MAX32665/RPU/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/RPU/Makefile
+++ b/Examples/MAX32665/RPU/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/RPU/README.md b/Examples/MAX32665/RPU/README.md
index 8ffe6d5348..03b3097c3a 100644
--- a/Examples/MAX32665/RPU/README.md
+++ b/Examples/MAX32665/RPU/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/RPU/project.mk b/Examples/MAX32665/RPU/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/RPU/project.mk
+++ b/Examples/MAX32665/RPU/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/RTC/.vscode/README.md b/Examples/MAX32665/RTC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/RTC/.vscode/README.md
+++ b/Examples/MAX32665/RTC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/RTC/.vscode/settings.json b/Examples/MAX32665/RTC/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/RTC/.vscode/settings.json
+++ b/Examples/MAX32665/RTC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/RTC/Makefile b/Examples/MAX32665/RTC/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/RTC/Makefile
+++ b/Examples/MAX32665/RTC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/RTC/README.md b/Examples/MAX32665/RTC/README.md
index 0a27a85ebd..6bcfecfaa6 100644
--- a/Examples/MAX32665/RTC/README.md
+++ b/Examples/MAX32665/RTC/README.md
@@ -12,7 +12,7 @@ The time-of-day alarm is then rearmed for another 10 sec. Pressing push button
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/RTC/project.mk b/Examples/MAX32665/RTC/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/RTC/project.mk
+++ b/Examples/MAX32665/RTC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/RTC_Backup/.vscode/README.md b/Examples/MAX32665/RTC_Backup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/RTC_Backup/.vscode/README.md
+++ b/Examples/MAX32665/RTC_Backup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/RTC_Backup/.vscode/settings.json b/Examples/MAX32665/RTC_Backup/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/RTC_Backup/.vscode/settings.json
+++ b/Examples/MAX32665/RTC_Backup/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/RTC_Backup/Makefile b/Examples/MAX32665/RTC_Backup/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/RTC_Backup/Makefile
+++ b/Examples/MAX32665/RTC_Backup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/RTC_Backup/README.md b/Examples/MAX32665/RTC_Backup/README.md
index 70d9c17414..02a8f8a8d1 100644
--- a/Examples/MAX32665/RTC_Backup/README.md
+++ b/Examples/MAX32665/RTC_Backup/README.md
@@ -10,7 +10,7 @@ The RTC time-of-day alarm is used to wake the device from backup mode every TIME
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/RTC_Backup/project.mk b/Examples/MAX32665/RTC_Backup/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/RTC_Backup/project.mk
+++ b/Examples/MAX32665/RTC_Backup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32665/SCPA_OTP_Dump/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/SCPA_OTP_Dump/.vscode/README.md
+++ b/Examples/MAX32665/SCPA_OTP_Dump/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/SCPA_OTP_Dump/.vscode/settings.json b/Examples/MAX32665/SCPA_OTP_Dump/.vscode/settings.json
index 1b67161c43..bc2660f879 100755
--- a/Examples/MAX32665/SCPA_OTP_Dump/.vscode/settings.json
+++ b/Examples/MAX32665/SCPA_OTP_Dump/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/SCPA_OTP_Dump/Makefile b/Examples/MAX32665/SCPA_OTP_Dump/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/SCPA_OTP_Dump/Makefile
+++ b/Examples/MAX32665/SCPA_OTP_Dump/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/SCPA_OTP_Dump/README.md b/Examples/MAX32665/SCPA_OTP_Dump/README.md
index 0bfa36813a..d209cee4bd 100644
--- a/Examples/MAX32665/SCPA_OTP_Dump/README.md
+++ b/Examples/MAX32665/SCPA_OTP_Dump/README.md
@@ -18,7 +18,7 @@ PROJ_CFLAGS+=-DMAX32665_A2
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/SCPA_OTP_Dump/project.mk b/Examples/MAX32665/SCPA_OTP_Dump/project.mk
index 6f5c0eeb92..da65933463 100644
--- a/Examples/MAX32665/SCPA_OTP_Dump/project.mk
+++ b/Examples/MAX32665/SCPA_OTP_Dump/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/SDHC_FAT/.cproject b/Examples/MAX32665/SDHC_FAT/.cproject
index 7cb97b93f9..4c4c6d6320 100644
--- a/Examples/MAX32665/SDHC_FAT/.cproject
+++ b/Examples/MAX32665/SDHC_FAT/.cproject
@@ -33,7 +33,7 @@
-
+
diff --git a/Examples/MAX32665/SDHC_FAT/.vscode/README.md b/Examples/MAX32665/SDHC_FAT/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/SDHC_FAT/.vscode/README.md
+++ b/Examples/MAX32665/SDHC_FAT/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/SDHC_FAT/.vscode/settings.json b/Examples/MAX32665/SDHC_FAT/.vscode/settings.json
index bf3bb6e011..1b7ea0a0ab 100755
--- a/Examples/MAX32665/SDHC_FAT/.vscode/settings.json
+++ b/Examples/MAX32665/SDHC_FAT/.vscode/settings.json
@@ -48,14 +48,14 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/SDHC/Include",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -66,14 +66,14 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source",
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/SDHC_FAT/Makefile b/Examples/MAX32665/SDHC_FAT/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/SDHC_FAT/Makefile
+++ b/Examples/MAX32665/SDHC_FAT/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/SDHC_FAT/README.md b/Examples/MAX32665/SDHC_FAT/README.md
index c28597eb58..a67fbc9223 100644
--- a/Examples/MAX32665/SDHC_FAT/README.md
+++ b/Examples/MAX32665/SDHC_FAT/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/SDHC_FAT/project.mk b/Examples/MAX32665/SDHC_FAT/project.mk
index 646524b212..e27fffe435 100644
--- a/Examples/MAX32665/SDHC_FAT/project.mk
+++ b/Examples/MAX32665/SDHC_FAT/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/SDHC_Raw/.cproject b/Examples/MAX32665/SDHC_Raw/.cproject
index 51f393251c..8ed0facb92 100644
--- a/Examples/MAX32665/SDHC_Raw/.cproject
+++ b/Examples/MAX32665/SDHC_Raw/.cproject
@@ -33,7 +33,7 @@
-
+
diff --git a/Examples/MAX32665/SDHC_Raw/.vscode/README.md b/Examples/MAX32665/SDHC_Raw/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/SDHC_Raw/.vscode/README.md
+++ b/Examples/MAX32665/SDHC_Raw/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/SDHC_Raw/.vscode/settings.json b/Examples/MAX32665/SDHC_Raw/.vscode/settings.json
index bf3bb6e011..1b7ea0a0ab 100755
--- a/Examples/MAX32665/SDHC_Raw/.vscode/settings.json
+++ b/Examples/MAX32665/SDHC_Raw/.vscode/settings.json
@@ -48,14 +48,14 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/SDHC/Include",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -66,14 +66,14 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source",
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/SDHC_Raw/Makefile b/Examples/MAX32665/SDHC_Raw/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/SDHC_Raw/Makefile
+++ b/Examples/MAX32665/SDHC_Raw/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/SDHC_Raw/README.md b/Examples/MAX32665/SDHC_Raw/README.md
index c28597eb58..a67fbc9223 100644
--- a/Examples/MAX32665/SDHC_Raw/README.md
+++ b/Examples/MAX32665/SDHC_Raw/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/SDHC_Raw/project.mk b/Examples/MAX32665/SDHC_Raw/project.mk
index 8937720476..7617441603 100644
--- a/Examples/MAX32665/SDHC_Raw/project.mk
+++ b/Examples/MAX32665/SDHC_Raw/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/SPI/.vscode/README.md b/Examples/MAX32665/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/SPI/.vscode/README.md
+++ b/Examples/MAX32665/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/SPI/.vscode/settings.json b/Examples/MAX32665/SPI/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/SPI/.vscode/settings.json
+++ b/Examples/MAX32665/SPI/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/SPI/Makefile b/Examples/MAX32665/SPI/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/SPI/Makefile
+++ b/Examples/MAX32665/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/SPI/README.md b/Examples/MAX32665/SPI/README.md
index dbdcefd923..aac571d9bc 100644
--- a/Examples/MAX32665/SPI/README.md
+++ b/Examples/MAX32665/SPI/README.md
@@ -11,7 +11,7 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/SPI/project.mk b/Examples/MAX32665/SPI/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/SPI/project.mk
+++ b/Examples/MAX32665/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/SPIXF/.vscode/README.md b/Examples/MAX32665/SPIXF/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/SPIXF/.vscode/README.md
+++ b/Examples/MAX32665/SPIXF/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/SPIXF/.vscode/settings.json b/Examples/MAX32665/SPIXF/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/SPIXF/.vscode/settings.json
+++ b/Examples/MAX32665/SPIXF/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/SPIXF/Makefile b/Examples/MAX32665/SPIXF/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/SPIXF/Makefile
+++ b/Examples/MAX32665/SPIXF/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/SPIXF/README.md b/Examples/MAX32665/SPIXF/README.md
index 31e2c40543..371b8baa22 100644
--- a/Examples/MAX32665/SPIXF/README.md
+++ b/Examples/MAX32665/SPIXF/README.md
@@ -7,7 +7,7 @@ This example communicates with the MX25 flash on the EvKit. It loads code onto i
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/SPIXF/project.mk b/Examples/MAX32665/SPIXF/project.mk
index 18168c835f..c96b2c27af 100644
--- a/Examples/MAX32665/SPIXF/project.mk
+++ b/Examples/MAX32665/SPIXF/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/SPIXF_SFCC/.vscode/README.md b/Examples/MAX32665/SPIXF_SFCC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/SPIXF_SFCC/.vscode/README.md
+++ b/Examples/MAX32665/SPIXF_SFCC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/SPIXF_SFCC/.vscode/settings.json b/Examples/MAX32665/SPIXF_SFCC/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/SPIXF_SFCC/.vscode/settings.json
+++ b/Examples/MAX32665/SPIXF_SFCC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/SPIXF_SFCC/Makefile b/Examples/MAX32665/SPIXF_SFCC/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/SPIXF_SFCC/Makefile
+++ b/Examples/MAX32665/SPIXF_SFCC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/SPIXF_SFCC/README.md b/Examples/MAX32665/SPIXF_SFCC/README.md
index da94546d70..b49656f093 100644
--- a/Examples/MAX32665/SPIXF_SFCC/README.md
+++ b/Examples/MAX32665/SPIXF_SFCC/README.md
@@ -9,7 +9,7 @@ To demonstrate, a sample function is loaded into the MX25 external flash chip. T
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/SPIXF_SFCC/project.mk b/Examples/MAX32665/SPIXF_SFCC/project.mk
index 4d9bccdf3b..1cdd0d5bb5 100644
--- a/Examples/MAX32665/SPIXF_SFCC/project.mk
+++ b/Examples/MAX32665/SPIXF_SFCC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/SPIXR/.vscode/README.md b/Examples/MAX32665/SPIXR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/SPIXR/.vscode/README.md
+++ b/Examples/MAX32665/SPIXR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/SPIXR/.vscode/settings.json b/Examples/MAX32665/SPIXR/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/SPIXR/.vscode/settings.json
+++ b/Examples/MAX32665/SPIXR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/SPIXR/Makefile b/Examples/MAX32665/SPIXR/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/SPIXR/Makefile
+++ b/Examples/MAX32665/SPIXR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/SPIXR/README.md b/Examples/MAX32665/SPIXR/README.md
index 481b03762a..049c0a60ec 100644
--- a/Examples/MAX32665/SPIXR/README.md
+++ b/Examples/MAX32665/SPIXR/README.md
@@ -9,7 +9,7 @@ It writes random data to the MX25 SPI RAM and reads it back.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/SPIXR/project.mk b/Examples/MAX32665/SPIXR/project.mk
index 6b23d41c21..c512e6d33d 100644
--- a/Examples/MAX32665/SPIXR/project.mk
+++ b/Examples/MAX32665/SPIXR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/SPI_3Wire/.vscode/README.md b/Examples/MAX32665/SPI_3Wire/.vscode/README.md
index 58733e941c..90fbcefc65 100644
--- a/Examples/MAX32665/SPI_3Wire/.vscode/README.md
+++ b/Examples/MAX32665/SPI_3Wire/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/SPI_3Wire/.vscode/settings.json b/Examples/MAX32665/SPI_3Wire/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/SPI_3Wire/.vscode/settings.json
+++ b/Examples/MAX32665/SPI_3Wire/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/SPI_3Wire/Makefile b/Examples/MAX32665/SPI_3Wire/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/SPI_3Wire/Makefile
+++ b/Examples/MAX32665/SPI_3Wire/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/SPI_3Wire/README.md b/Examples/MAX32665/SPI_3Wire/README.md
index 297ab4d026..6de8bf8b74 100644
--- a/Examples/MAX32665/SPI_3Wire/README.md
+++ b/Examples/MAX32665/SPI_3Wire/README.md
@@ -6,7 +6,7 @@ This example sends data between two SPI peripherals operating in 3-wire SPI mode
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/SPI_3Wire/project.mk b/Examples/MAX32665/SPI_3Wire/project.mk
index 89b55beee9..2f4090db02 100644
--- a/Examples/MAX32665/SPI_3Wire/project.mk
+++ b/Examples/MAX32665/SPI_3Wire/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/SRCC/.vscode/README.md b/Examples/MAX32665/SRCC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/SRCC/.vscode/README.md
+++ b/Examples/MAX32665/SRCC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/SRCC/.vscode/settings.json b/Examples/MAX32665/SRCC/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/SRCC/.vscode/settings.json
+++ b/Examples/MAX32665/SRCC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/SRCC/Makefile b/Examples/MAX32665/SRCC/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/SRCC/Makefile
+++ b/Examples/MAX32665/SRCC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/SRCC/README.md b/Examples/MAX32665/SRCC/README.md
index 2642e43e09..43bb967fc0 100644
--- a/Examples/MAX32665/SRCC/README.md
+++ b/Examples/MAX32665/SRCC/README.md
@@ -7,7 +7,7 @@ The example compares the execution times required to read from MX25 RAM with the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/SRCC/project.mk b/Examples/MAX32665/SRCC/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/SRCC/project.mk
+++ b/Examples/MAX32665/SRCC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Semaphore/.vscode/README.md b/Examples/MAX32665/Semaphore/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Semaphore/.vscode/README.md
+++ b/Examples/MAX32665/Semaphore/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Semaphore/.vscode/settings.json b/Examples/MAX32665/Semaphore/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/Semaphore/.vscode/settings.json
+++ b/Examples/MAX32665/Semaphore/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Semaphore/Makefile b/Examples/MAX32665/Semaphore/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Semaphore/Makefile
+++ b/Examples/MAX32665/Semaphore/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Semaphore/README.md b/Examples/MAX32665/Semaphore/README.md
index e7a70367e1..6b85a39c86 100644
--- a/Examples/MAX32665/Semaphore/README.md
+++ b/Examples/MAX32665/Semaphore/README.md
@@ -13,7 +13,7 @@ Please note that: Depend on the number of button on your board the example outpu
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Semaphore/project.mk b/Examples/MAX32665/Semaphore/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/Semaphore/project.mk
+++ b/Examples/MAX32665/Semaphore/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/TMR/.vscode/README.md b/Examples/MAX32665/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/TMR/.vscode/README.md
+++ b/Examples/MAX32665/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/TMR/.vscode/settings.json b/Examples/MAX32665/TMR/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/TMR/.vscode/settings.json
+++ b/Examples/MAX32665/TMR/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/TMR/Makefile b/Examples/MAX32665/TMR/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/TMR/Makefile
+++ b/Examples/MAX32665/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/TMR/README.md b/Examples/MAX32665/TMR/README.md
index 4320dc98eb..e624f9df2e 100644
--- a/Examples/MAX32665/TMR/README.md
+++ b/Examples/MAX32665/TMR/README.md
@@ -13,7 +13,7 @@ Two timers are used to demonstrate two different modes of the general purpose ti
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/TMR/project.mk b/Examples/MAX32665/TMR/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/TMR/project.mk
+++ b/Examples/MAX32665/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/TRNG/.vscode/README.md b/Examples/MAX32665/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/TRNG/.vscode/README.md
+++ b/Examples/MAX32665/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/TRNG/.vscode/settings.json b/Examples/MAX32665/TRNG/.vscode/settings.json
index 2f8cf3fb53..69c184a0ba 100755
--- a/Examples/MAX32665/TRNG/.vscode/settings.json
+++ b/Examples/MAX32665/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32665/TRNG/Makefile b/Examples/MAX32665/TRNG/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/TRNG/Makefile
+++ b/Examples/MAX32665/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/TRNG/README.md b/Examples/MAX32665/TRNG/README.md
index ccd2acfdd8..90d9d1c937 100644
--- a/Examples/MAX32665/TRNG/README.md
+++ b/Examples/MAX32665/TRNG/README.md
@@ -7,7 +7,7 @@ The true random number generator (TRNG) hardware is exercised in this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/TRNG/project.mk b/Examples/MAX32665/TRNG/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/TRNG/project.mk
+++ b/Examples/MAX32665/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Temp_Monitor/.vscode/README.md b/Examples/MAX32665/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX32665/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Temp_Monitor/.vscode/settings.json b/Examples/MAX32665/Temp_Monitor/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX32665/Temp_Monitor/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Temp_Monitor/Makefile b/Examples/MAX32665/Temp_Monitor/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Temp_Monitor/Makefile
+++ b/Examples/MAX32665/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Temp_Monitor/README.md b/Examples/MAX32665/Temp_Monitor/README.md
index 4485ef6fb5..63f6ac5006 100644
--- a/Examples/MAX32665/Temp_Monitor/README.md
+++ b/Examples/MAX32665/Temp_Monitor/README.md
@@ -15,7 +15,7 @@ The temperature limits, flash storage page, and RTC time-of-day alarm period are
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Temp_Monitor/project.mk b/Examples/MAX32665/Temp_Monitor/project.mk
index bc27e83a13..6e9394a6b7 100644
--- a/Examples/MAX32665/Temp_Monitor/project.mk
+++ b/Examples/MAX32665/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/UART/.vscode/README.md b/Examples/MAX32665/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/UART/.vscode/README.md
+++ b/Examples/MAX32665/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/UART/.vscode/settings.json b/Examples/MAX32665/UART/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/UART/.vscode/settings.json
+++ b/Examples/MAX32665/UART/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/UART/Makefile b/Examples/MAX32665/UART/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/UART/Makefile
+++ b/Examples/MAX32665/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/UART/README.md b/Examples/MAX32665/UART/README.md
index 3177023982..fac155c76d 100644
--- a/Examples/MAX32665/UART/README.md
+++ b/Examples/MAX32665/UART/README.md
@@ -7,7 +7,7 @@ This application uses two serial ports to send and receive data. One serial por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/UART/project.mk b/Examples/MAX32665/UART/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/UART/project.mk
+++ b/Examples/MAX32665/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/UCL/README.md b/Examples/MAX32665/UCL/README.md
index e778da9d16..6cc9832a32 100644
--- a/Examples/MAX32665/UCL/README.md
+++ b/Examples/MAX32665/UCL/README.md
@@ -9,7 +9,7 @@ TODO:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/UCL/project.mk b/Examples/MAX32665/UCL/project.mk
index d75f13cac7..ca2b51f866 100644
--- a/Examples/MAX32665/UCL/project.mk
+++ b/Examples/MAX32665/UCL/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/USB/USB_CDCACM/.vscode/README.md b/Examples/MAX32665/USB/USB_CDCACM/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/USB/USB_CDCACM/.vscode/README.md
+++ b/Examples/MAX32665/USB/USB_CDCACM/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/USB/USB_CDCACM/.vscode/settings.json b/Examples/MAX32665/USB/USB_CDCACM/.vscode/settings.json
index a9f48888b1..a090f08b37 100755
--- a/Examples/MAX32665/USB/USB_CDCACM/.vscode/settings.json
+++ b/Examples/MAX32665/USB/USB_CDCACM/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/USB/USB_CDCACM/Makefile b/Examples/MAX32665/USB/USB_CDCACM/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/USB/USB_CDCACM/Makefile
+++ b/Examples/MAX32665/USB/USB_CDCACM/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/USB/USB_CDCACM/README.md b/Examples/MAX32665/USB/USB_CDCACM/README.md
index a7c272f0a9..9716423d1c 100644
--- a/Examples/MAX32665/USB/USB_CDCACM/README.md
+++ b/Examples/MAX32665/USB/USB_CDCACM/README.md
@@ -7,7 +7,7 @@ The example demonstartes the use of USB CDC-ACM driver class. After doing the re
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/USB/USB_CDCACM/project.mk b/Examples/MAX32665/USB/USB_CDCACM/project.mk
index e5ac7ddc1a..9448aa13e5 100644
--- a/Examples/MAX32665/USB/USB_CDCACM/project.mk
+++ b/Examples/MAX32665/USB/USB_CDCACM/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
+++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
index a9f48888b1..a090f08b37 100755
--- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
+++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/Makefile b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/Makefile
+++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/README.md b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/README.md
index 1d52dbcbac..65fa10847a 100644
--- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/README.md
+++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/README.md
@@ -7,7 +7,7 @@ The example demonstartes the use of USB composite device with Mass Storage drive
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/project.mk b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/project.mk
index 916e3713b1..d6d13c013c 100644
--- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/project.mk
+++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
+++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
index a9f48888b1..a090f08b37 100755
--- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
+++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/Makefile b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/Makefile
+++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/README.md b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/README.md
index dc91ea7bf5..31a55170f5 100644
--- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/README.md
+++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/README.md
@@ -7,7 +7,7 @@ The example demonstartes the use of USB composite device with Mass Storage drive
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/project.mk b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/project.mk
index 24ffb58a8b..438c96809d 100644
--- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/project.mk
+++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/README.md b/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/README.md
+++ b/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/settings.json b/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/settings.json
index a9f48888b1..a090f08b37 100755
--- a/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/settings.json
+++ b/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/USB/USB_HIDKeyboard/Makefile b/Examples/MAX32665/USB/USB_HIDKeyboard/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/USB/USB_HIDKeyboard/Makefile
+++ b/Examples/MAX32665/USB/USB_HIDKeyboard/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/USB/USB_HIDKeyboard/README.md b/Examples/MAX32665/USB/USB_HIDKeyboard/README.md
index 3717cc51d1..6308315651 100644
--- a/Examples/MAX32665/USB/USB_HIDKeyboard/README.md
+++ b/Examples/MAX32665/USB/USB_HIDKeyboard/README.md
@@ -7,7 +7,7 @@ The example demonstartes the use of USB CHID driver class. After doing the requi
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/USB/USB_HIDKeyboard/project.mk b/Examples/MAX32665/USB/USB_HIDKeyboard/project.mk
index e5ac7ddc1a..9448aa13e5 100644
--- a/Examples/MAX32665/USB/USB_HIDKeyboard/project.mk
+++ b/Examples/MAX32665/USB/USB_HIDKeyboard/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/USB/USB_MassStorage/.vscode/README.md b/Examples/MAX32665/USB/USB_MassStorage/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/USB/USB_MassStorage/.vscode/README.md
+++ b/Examples/MAX32665/USB/USB_MassStorage/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/USB/USB_MassStorage/.vscode/settings.json b/Examples/MAX32665/USB/USB_MassStorage/.vscode/settings.json
index a9f48888b1..a090f08b37 100755
--- a/Examples/MAX32665/USB/USB_MassStorage/.vscode/settings.json
+++ b/Examples/MAX32665/USB/USB_MassStorage/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/USB/USB_MassStorage/Makefile b/Examples/MAX32665/USB/USB_MassStorage/Makefile
index 546d0aa954..a9dc115755 100644
--- a/Examples/MAX32665/USB/USB_MassStorage/Makefile
+++ b/Examples/MAX32665/USB/USB_MassStorage/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/USB/USB_MassStorage/README.md b/Examples/MAX32665/USB/USB_MassStorage/README.md
index 5c55863bbd..deea4918e6 100644
--- a/Examples/MAX32665/USB/USB_MassStorage/README.md
+++ b/Examples/MAX32665/USB/USB_MassStorage/README.md
@@ -7,7 +7,7 @@ The example demonstartes the use of USB Mass Storage driver class. After doing t
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/USB/USB_MassStorage/project.mk b/Examples/MAX32665/USB/USB_MassStorage/project.mk
index 24ffb58a8b..438c96809d 100644
--- a/Examples/MAX32665/USB/USB_MassStorage/project.mk
+++ b/Examples/MAX32665/USB/USB_MassStorage/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/WUT/.vscode/README.md b/Examples/MAX32665/WUT/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/WUT/.vscode/README.md
+++ b/Examples/MAX32665/WUT/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/WUT/.vscode/settings.json b/Examples/MAX32665/WUT/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/WUT/.vscode/settings.json
+++ b/Examples/MAX32665/WUT/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/WUT/Makefile b/Examples/MAX32665/WUT/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/WUT/Makefile
+++ b/Examples/MAX32665/WUT/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/WUT/README.md b/Examples/MAX32665/WUT/README.md
index 3747f074f2..924a9f4852 100644
--- a/Examples/MAX32665/WUT/README.md
+++ b/Examples/MAX32665/WUT/README.md
@@ -6,7 +6,7 @@ This Example shows how to wake up a device after it is asleep with a wake up tim
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/WUT/project.mk b/Examples/MAX32665/WUT/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/WUT/project.mk
+++ b/Examples/MAX32665/WUT/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/Watchdog/.vscode/README.md b/Examples/MAX32665/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/Watchdog/.vscode/README.md
+++ b/Examples/MAX32665/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/Watchdog/.vscode/settings.json b/Examples/MAX32665/Watchdog/.vscode/settings.json
index 08037d03fa..43731b3ff8 100755
--- a/Examples/MAX32665/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32665/Watchdog/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32665/Watchdog/Makefile b/Examples/MAX32665/Watchdog/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/Watchdog/Makefile
+++ b/Examples/MAX32665/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/Watchdog/README.md b/Examples/MAX32665/Watchdog/README.md
index e48264fe39..de2af2a867 100644
--- a/Examples/MAX32665/Watchdog/README.md
+++ b/Examples/MAX32665/Watchdog/README.md
@@ -11,7 +11,7 @@ When the application begins, it initializes and starts the watchdog timer. The
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32665/Watchdog/project.mk b/Examples/MAX32665/Watchdog/project.mk
index 70d124b049..6b431a2229 100644
--- a/Examples/MAX32665/Watchdog/project.mk
+++ b/Examples/MAX32665/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32665/WearLeveling/.vscode/README.md b/Examples/MAX32665/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32665/WearLeveling/.vscode/README.md
+++ b/Examples/MAX32665/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32665/WearLeveling/.vscode/settings.json b/Examples/MAX32665/WearLeveling/.vscode/settings.json
index bdcdc22b35..3b1a67c5b0 100755
--- a/Examples/MAX32665/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX32665/WearLeveling/.vscode/settings.json
@@ -48,13 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/CLI/inc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/littlefs",
@@ -67,6 +67,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -74,7 +75,6 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/CLI/src",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/littlefs",
diff --git a/Examples/MAX32665/WearLeveling/Makefile b/Examples/MAX32665/WearLeveling/Makefile
index 0c731b687b..12be0e19f3 100644
--- a/Examples/MAX32665/WearLeveling/Makefile
+++ b/Examples/MAX32665/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32665/WearLeveling/README.md b/Examples/MAX32665/WearLeveling/README.md
index b3b66952ba..55e845c728 100644
--- a/Examples/MAX32665/WearLeveling/README.md
+++ b/Examples/MAX32665/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32665EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32665EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32665/WearLeveling/project.mk b/Examples/MAX32665/WearLeveling/project.mk
index b210479e58..197d3649ed 100644
--- a/Examples/MAX32665/WearLeveling/project.mk
+++ b/Examples/MAX32665/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32670/AES/.vscode/README.md b/Examples/MAX32670/AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/AES/.vscode/README.md
+++ b/Examples/MAX32670/AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/AES/.vscode/settings.json b/Examples/MAX32670/AES/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/AES/.vscode/settings.json
+++ b/Examples/MAX32670/AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/AES/Makefile b/Examples/MAX32670/AES/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/AES/Makefile
+++ b/Examples/MAX32670/AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/AES/README.md b/Examples/MAX32670/AES/README.md
index 951d761972..ca18384f9d 100644
--- a/Examples/MAX32670/AES/README.md
+++ b/Examples/MAX32670/AES/README.md
@@ -7,7 +7,7 @@ This application demonstrates both encryption and decryption using AES. A block
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/AES/project.mk b/Examples/MAX32670/AES/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/AES/project.mk
+++ b/Examples/MAX32670/AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/README.md b/Examples/MAX32670/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32670/ARM-DSP/README.md
+++ b/Examples/MAX32670/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_bayes_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_bayes_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_convolution_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_convolution_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_fir_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_fir_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_matrix_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_matrix_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_svm_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_svm_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/settings.json
index e17c0990eb..313f96c601 100755
--- a/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32670/ARM-DSP/arm_variance_example/Makefile
index b0f8747d65..b0ad5d35ad 100644
--- a/Examples/MAX32670/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32670/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX32670/ARM-DSP/arm_variance_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32670/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX32670/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/CRC/.vscode/README.md b/Examples/MAX32670/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/CRC/.vscode/README.md
+++ b/Examples/MAX32670/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/CRC/.vscode/settings.json b/Examples/MAX32670/CRC/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/CRC/.vscode/settings.json
+++ b/Examples/MAX32670/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/CRC/Makefile b/Examples/MAX32670/CRC/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/CRC/Makefile
+++ b/Examples/MAX32670/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/CRC/README.md b/Examples/MAX32670/CRC/README.md
index 3d38377afe..333107605e 100644
--- a/Examples/MAX32670/CRC/README.md
+++ b/Examples/MAX32670/CRC/README.md
@@ -7,7 +7,7 @@ This example demonstrates the use of the HW CRC calculator. The example first g
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/CRC/project.mk b/Examples/MAX32670/CRC/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/CRC/project.mk
+++ b/Examples/MAX32670/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/Coremark/.vscode/README.md b/Examples/MAX32670/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/Coremark/.vscode/README.md
+++ b/Examples/MAX32670/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/Coremark/.vscode/settings.json b/Examples/MAX32670/Coremark/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/Coremark/.vscode/settings.json
+++ b/Examples/MAX32670/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/Coremark/Makefile b/Examples/MAX32670/Coremark/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/Coremark/Makefile
+++ b/Examples/MAX32670/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/Coremark/README.md b/Examples/MAX32670/Coremark/README.md
index 51b3bdbb90..adf383881e 100644
--- a/Examples/MAX32670/Coremark/README.md
+++ b/Examples/MAX32670/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/Coremark/project.mk b/Examples/MAX32670/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32670/Coremark/project.mk
+++ b/Examples/MAX32670/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32670/DMA/.vscode/README.md b/Examples/MAX32670/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/DMA/.vscode/README.md
+++ b/Examples/MAX32670/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/DMA/.vscode/settings.json b/Examples/MAX32670/DMA/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/DMA/.vscode/settings.json
+++ b/Examples/MAX32670/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/DMA/Makefile b/Examples/MAX32670/DMA/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/DMA/Makefile
+++ b/Examples/MAX32670/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/DMA/README.md b/Examples/MAX32670/DMA/README.md
index a241a2cc93..195c540cf4 100644
--- a/Examples/MAX32670/DMA/README.md
+++ b/Examples/MAX32670/DMA/README.md
@@ -9,7 +9,7 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/DMA/project.mk b/Examples/MAX32670/DMA/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/DMA/project.mk
+++ b/Examples/MAX32670/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32670/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32670/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32670/EEPROM_Emulator/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32670/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/EEPROM_Emulator/Makefile b/Examples/MAX32670/EEPROM_Emulator/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32670/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/EEPROM_Emulator/README.md b/Examples/MAX32670/EEPROM_Emulator/README.md
index 2521bd060a..8eb787ed52 100644
--- a/Examples/MAX32670/EEPROM_Emulator/README.md
+++ b/Examples/MAX32670/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32670 to emulate a 32KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -48,7 +48,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/EEPROM_Emulator/project.mk b/Examples/MAX32670/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32670/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32670/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32670/EXT_CLK/.vscode/README.md b/Examples/MAX32670/EXT_CLK/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/EXT_CLK/.vscode/README.md
+++ b/Examples/MAX32670/EXT_CLK/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/EXT_CLK/.vscode/settings.json b/Examples/MAX32670/EXT_CLK/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/EXT_CLK/.vscode/settings.json
+++ b/Examples/MAX32670/EXT_CLK/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/EXT_CLK/Makefile b/Examples/MAX32670/EXT_CLK/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/EXT_CLK/Makefile
+++ b/Examples/MAX32670/EXT_CLK/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/EXT_CLK/README.md b/Examples/MAX32670/EXT_CLK/README.md
index 9e2822bb3a..0802f82599 100644
--- a/Examples/MAX32670/EXT_CLK/README.md
+++ b/Examples/MAX32670/EXT_CLK/README.md
@@ -8,7 +8,7 @@ Operation requires a clean external clock signal (square wave, 50% duty cycle) f
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/EXT_CLK/project.mk b/Examples/MAX32670/EXT_CLK/project.mk
index c692e32570..d27aeb5fbf 100644
--- a/Examples/MAX32670/EXT_CLK/project.mk
+++ b/Examples/MAX32670/EXT_CLK/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
diff --git a/Examples/MAX32670/Flash/.vscode/README.md b/Examples/MAX32670/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/Flash/.vscode/README.md
+++ b/Examples/MAX32670/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/Flash/.vscode/settings.json b/Examples/MAX32670/Flash/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/Flash/.vscode/settings.json
+++ b/Examples/MAX32670/Flash/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/Flash/Makefile b/Examples/MAX32670/Flash/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/Flash/Makefile
+++ b/Examples/MAX32670/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/Flash/README.md b/Examples/MAX32670/Flash/README.md
index 5d508a3861..cacc3a126b 100644
--- a/Examples/MAX32670/Flash/README.md
+++ b/Examples/MAX32670/Flash/README.md
@@ -21,7 +21,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -37,7 +37,7 @@ MAX32670EVKIT:
## Building and Running
-**See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
+**See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
## Expected Output
diff --git a/Examples/MAX32670/Flash/project.mk b/Examples/MAX32670/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32670/Flash/project.mk
+++ b/Examples/MAX32670/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32670/Flash_CLI/.vscode/README.md b/Examples/MAX32670/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32670/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/Flash_CLI/.vscode/settings.json b/Examples/MAX32670/Flash_CLI/.vscode/settings.json
index 71842c12e9..aeee1b0927 100755
--- a/Examples/MAX32670/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32670/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -62,6 +63,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/Flash_CLI/Makefile b/Examples/MAX32670/Flash_CLI/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/Flash_CLI/Makefile
+++ b/Examples/MAX32670/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/Flash_CLI/README.md b/Examples/MAX32670/Flash_CLI/README.md
index 1ac0efa8bf..2eeb6945e2 100644
--- a/Examples/MAX32670/Flash_CLI/README.md
+++ b/Examples/MAX32670/Flash_CLI/README.md
@@ -9,7 +9,7 @@ This example demonstates various features of the Flash Controller (page erase an
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/Flash_CLI/project.mk b/Examples/MAX32670/Flash_CLI/project.mk
index 569767abf7..6d35d86af3 100644
--- a/Examples/MAX32670/Flash_CLI/project.mk
+++ b/Examples/MAX32670/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32670/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX32670/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX32670/FreeRTOSDemo/.vscode/settings.json
index 5f2f12b355..1bf084142b 100755
--- a/Examples/MAX32670/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX32670/FreeRTOSDemo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/FreeRTOSDemo/Makefile b/Examples/MAX32670/FreeRTOSDemo/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/FreeRTOSDemo/Makefile
+++ b/Examples/MAX32670/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/FreeRTOSDemo/README.md b/Examples/MAX32670/FreeRTOSDemo/README.md
index 66eb309c4f..abeaa94c5e 100644
--- a/Examples/MAX32670/FreeRTOSDemo/README.md
+++ b/Examples/MAX32670/FreeRTOSDemo/README.md
@@ -7,7 +7,7 @@ A basic getting started application for FreeRTOS.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/FreeRTOSDemo/project.mk b/Examples/MAX32670/FreeRTOSDemo/project.mk
index b3fecca9c6..07c7bbffca 100644
--- a/Examples/MAX32670/FreeRTOSDemo/project.mk
+++ b/Examples/MAX32670/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/GPIO/.vscode/README.md b/Examples/MAX32670/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/GPIO/.vscode/README.md
+++ b/Examples/MAX32670/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/GPIO/.vscode/settings.json b/Examples/MAX32670/GPIO/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/GPIO/.vscode/settings.json
+++ b/Examples/MAX32670/GPIO/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/GPIO/Makefile b/Examples/MAX32670/GPIO/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/GPIO/Makefile
+++ b/Examples/MAX32670/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/GPIO/README.md b/Examples/MAX32670/GPIO/README.md
index 82d46ce13c..6d3c8759dc 100644
--- a/Examples/MAX32670/GPIO/README.md
+++ b/Examples/MAX32670/GPIO/README.md
@@ -9,7 +9,7 @@ P0.16 is continuously scanned and whatever value is read on that pin is then out
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/GPIO/project.mk b/Examples/MAX32670/GPIO/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/GPIO/project.mk
+++ b/Examples/MAX32670/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/Hello_World/.vscode/README.md b/Examples/MAX32670/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/Hello_World/.vscode/README.md
+++ b/Examples/MAX32670/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/Hello_World/.vscode/settings.json b/Examples/MAX32670/Hello_World/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32670/Hello_World/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/Hello_World/Makefile b/Examples/MAX32670/Hello_World/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/Hello_World/Makefile
+++ b/Examples/MAX32670/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/Hello_World/README.md b/Examples/MAX32670/Hello_World/README.md
index 684f864c92..c34f09f8e5 100644
--- a/Examples/MAX32670/Hello_World/README.md
+++ b/Examples/MAX32670/Hello_World/README.md
@@ -9,7 +9,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/Hello_World/project.mk b/Examples/MAX32670/Hello_World/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/Hello_World/project.mk
+++ b/Examples/MAX32670/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32670/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32670/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32670/Hello_World_Cpp/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32670/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/Hello_World_Cpp/Makefile b/Examples/MAX32670/Hello_World_Cpp/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32670/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/Hello_World_Cpp/README.md b/Examples/MAX32670/Hello_World_Cpp/README.md
index 3a9604b247..3ce4bb6fd9 100644
--- a/Examples/MAX32670/Hello_World_Cpp/README.md
+++ b/Examples/MAX32670/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/Hello_World_Cpp/project.mk b/Examples/MAX32670/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32670/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32670/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32670/I2C/.vscode/README.md b/Examples/MAX32670/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/I2C/.vscode/README.md
+++ b/Examples/MAX32670/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/I2C/.vscode/settings.json b/Examples/MAX32670/I2C/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/I2C/.vscode/settings.json
+++ b/Examples/MAX32670/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/I2C/Makefile b/Examples/MAX32670/I2C/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/I2C/Makefile
+++ b/Examples/MAX32670/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/I2C/README.md b/Examples/MAX32670/I2C/README.md
index 65ca351c59..4d09d2838e 100644
--- a/Examples/MAX32670/I2C/README.md
+++ b/Examples/MAX32670/I2C/README.md
@@ -7,7 +7,7 @@ This example uses the I2C Master to read/write from/to the I2C Slave.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/I2C/project.mk b/Examples/MAX32670/I2C/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/I2C/project.mk
+++ b/Examples/MAX32670/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/I2C_MNGR/.vscode/README.md b/Examples/MAX32670/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32670/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/I2C_MNGR/.vscode/settings.json b/Examples/MAX32670/I2C_MNGR/.vscode/settings.json
index f5b0ac4c13..e6c17abec2 100755
--- a/Examples/MAX32670/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32670/I2C_MNGR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/I2C_MNGR/Makefile b/Examples/MAX32670/I2C_MNGR/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/I2C_MNGR/Makefile
+++ b/Examples/MAX32670/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/I2C_MNGR/README.md b/Examples/MAX32670/I2C_MNGR/README.md
index eea49f18cd..efd50a6a07 100644
--- a/Examples/MAX32670/I2C_MNGR/README.md
+++ b/Examples/MAX32670/I2C_MNGR/README.md
@@ -11,7 +11,7 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/I2C_MNGR/project.mk b/Examples/MAX32670/I2C_MNGR/project.mk
index 315928bc48..90e76c6363 100644
--- a/Examples/MAX32670/I2C_MNGR/project.mk
+++ b/Examples/MAX32670/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32670/I2C_SCAN/.vscode/README.md b/Examples/MAX32670/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32670/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/I2C_SCAN/.vscode/settings.json b/Examples/MAX32670/I2C_SCAN/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32670/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/I2C_SCAN/Makefile b/Examples/MAX32670/I2C_SCAN/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/I2C_SCAN/Makefile
+++ b/Examples/MAX32670/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/I2C_SCAN/README.md b/Examples/MAX32670/I2C_SCAN/README.md
index 7e7e719667..10afbe177d 100644
--- a/Examples/MAX32670/I2C_SCAN/README.md
+++ b/Examples/MAX32670/I2C_SCAN/README.md
@@ -6,7 +6,7 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/I2C_SCAN/project.mk b/Examples/MAX32670/I2C_SCAN/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/I2C_SCAN/project.mk
+++ b/Examples/MAX32670/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/I2C_Sensor/.vscode/README.md b/Examples/MAX32670/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32670/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/I2C_Sensor/.vscode/settings.json b/Examples/MAX32670/I2C_Sensor/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32670/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/I2C_Sensor/Makefile b/Examples/MAX32670/I2C_Sensor/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/I2C_Sensor/Makefile
+++ b/Examples/MAX32670/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/I2C_Sensor/README.md b/Examples/MAX32670/I2C_Sensor/README.md
index b7f9bdbdf9..6b2061e793 100644
--- a/Examples/MAX32670/I2C_Sensor/README.md
+++ b/Examples/MAX32670/I2C_Sensor/README.md
@@ -9,7 +9,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/I2C_Sensor/project.mk b/Examples/MAX32670/I2C_Sensor/project.mk
index a53675ddcf..6a77af6337 100644
--- a/Examples/MAX32670/I2C_Sensor/project.mk
+++ b/Examples/MAX32670/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32670/I2S/.vscode/README.md b/Examples/MAX32670/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/I2S/.vscode/README.md
+++ b/Examples/MAX32670/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/I2S/.vscode/settings.json b/Examples/MAX32670/I2S/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/I2S/.vscode/settings.json
+++ b/Examples/MAX32670/I2S/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/I2S/Makefile b/Examples/MAX32670/I2S/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/I2S/Makefile
+++ b/Examples/MAX32670/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/I2S/README.md b/Examples/MAX32670/I2S/README.md
index eba37f4e80..32b59842e7 100644
--- a/Examples/MAX32670/I2S/README.md
+++ b/Examples/MAX32670/I2S/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/I2S/project.mk b/Examples/MAX32670/I2S/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/I2S/project.mk
+++ b/Examples/MAX32670/I2S/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/ICC/.vscode/README.md b/Examples/MAX32670/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/ICC/.vscode/README.md
+++ b/Examples/MAX32670/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/ICC/.vscode/settings.json b/Examples/MAX32670/ICC/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/ICC/.vscode/settings.json
+++ b/Examples/MAX32670/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/ICC/Makefile b/Examples/MAX32670/ICC/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/ICC/Makefile
+++ b/Examples/MAX32670/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/ICC/README.md b/Examples/MAX32670/ICC/README.md
index 2305568449..8ddfcf5d65 100644
--- a/Examples/MAX32670/ICC/README.md
+++ b/Examples/MAX32670/ICC/README.md
@@ -12,7 +12,7 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/ICC/project.mk b/Examples/MAX32670/ICC/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/ICC/project.mk
+++ b/Examples/MAX32670/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/LP/.vscode/README.md b/Examples/MAX32670/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/LP/.vscode/README.md
+++ b/Examples/MAX32670/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/LP/.vscode/settings.json b/Examples/MAX32670/LP/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/LP/.vscode/settings.json
+++ b/Examples/MAX32670/LP/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/LP/Makefile b/Examples/MAX32670/LP/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/LP/Makefile
+++ b/Examples/MAX32670/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/LP/README.md b/Examples/MAX32670/LP/README.md
index 59d065f2c4..7f9a61b09e 100644
--- a/Examples/MAX32670/LP/README.md
+++ b/Examples/MAX32670/LP/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/LP/project.mk b/Examples/MAX32670/LP/project.mk
index 19bf763ca3..705be27c7a 100644
--- a/Examples/MAX32670/LP/project.mk
+++ b/Examples/MAX32670/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/Library_Generate/.vscode/README.md b/Examples/MAX32670/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32670/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32670/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32670/Library_Generate/Makefile b/Examples/MAX32670/Library_Generate/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/Library_Generate/Makefile
+++ b/Examples/MAX32670/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/Library_Generate/README.md b/Examples/MAX32670/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32670/Library_Generate/README.md
+++ b/Examples/MAX32670/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/Library_Generate/project.mk b/Examples/MAX32670/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32670/Library_Generate/project.mk
+++ b/Examples/MAX32670/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32670/Library_Use/.vscode/README.md b/Examples/MAX32670/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/Library_Use/.vscode/README.md
+++ b/Examples/MAX32670/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/Library_Use/.vscode/settings.json b/Examples/MAX32670/Library_Use/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32670/Library_Use/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/Library_Use/Makefile b/Examples/MAX32670/Library_Use/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/Library_Use/Makefile
+++ b/Examples/MAX32670/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/Library_Use/README.md b/Examples/MAX32670/Library_Use/README.md
index d971ab0ec7..05e1c590bd 100644
--- a/Examples/MAX32670/Library_Use/README.md
+++ b/Examples/MAX32670/Library_Use/README.md
@@ -9,7 +9,7 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/Library_Use/project.mk b/Examples/MAX32670/Library_Use/project.mk
index 972fa6942d..697d6809f8 100644
--- a/Examples/MAX32670/Library_Use/project.mk
+++ b/Examples/MAX32670/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32670/RTC/.vscode/README.md b/Examples/MAX32670/RTC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/RTC/.vscode/README.md
+++ b/Examples/MAX32670/RTC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/RTC/.vscode/settings.json b/Examples/MAX32670/RTC/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/RTC/.vscode/settings.json
+++ b/Examples/MAX32670/RTC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/RTC/Makefile b/Examples/MAX32670/RTC/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/RTC/Makefile
+++ b/Examples/MAX32670/RTC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/RTC/README.md b/Examples/MAX32670/RTC/README.md
index 40fa476c75..8c4b0576a6 100644
--- a/Examples/MAX32670/RTC/README.md
+++ b/Examples/MAX32670/RTC/README.md
@@ -13,7 +13,7 @@ The RTC is enabled and the sub-second alarm set to trigger every 250 ms.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/RTC/project.mk b/Examples/MAX32670/RTC/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/RTC/project.mk
+++ b/Examples/MAX32670/RTC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/RTC_Backup/.vscode/README.md b/Examples/MAX32670/RTC_Backup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/RTC_Backup/.vscode/README.md
+++ b/Examples/MAX32670/RTC_Backup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/RTC_Backup/.vscode/settings.json b/Examples/MAX32670/RTC_Backup/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/RTC_Backup/.vscode/settings.json
+++ b/Examples/MAX32670/RTC_Backup/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/RTC_Backup/Makefile b/Examples/MAX32670/RTC_Backup/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/RTC_Backup/Makefile
+++ b/Examples/MAX32670/RTC_Backup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/RTC_Backup/README.md b/Examples/MAX32670/RTC_Backup/README.md
index 370cd0c598..0c045edafb 100644
--- a/Examples/MAX32670/RTC_Backup/README.md
+++ b/Examples/MAX32670/RTC_Backup/README.md
@@ -10,7 +10,7 @@ The RTC time-of-day alarm is used to wake the device from backup mode every TIME
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/RTC_Backup/project.mk b/Examples/MAX32670/RTC_Backup/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/RTC_Backup/project.mk
+++ b/Examples/MAX32670/RTC_Backup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/SPI/.vscode/README.md b/Examples/MAX32670/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/SPI/.vscode/README.md
+++ b/Examples/MAX32670/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/SPI/.vscode/settings.json b/Examples/MAX32670/SPI/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/SPI/.vscode/settings.json
+++ b/Examples/MAX32670/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/SPI/Makefile b/Examples/MAX32670/SPI/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/SPI/Makefile
+++ b/Examples/MAX32670/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/SPI/README.md b/Examples/MAX32670/SPI/README.md
index c3be7b60bc..28a661e0b2 100644
--- a/Examples/MAX32670/SPI/README.md
+++ b/Examples/MAX32670/SPI/README.md
@@ -11,7 +11,7 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/SPI/project.mk b/Examples/MAX32670/SPI/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/SPI/project.mk
+++ b/Examples/MAX32670/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32670/SPI_MasterSlave/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/SPI_MasterSlave/.vscode/README.md
+++ b/Examples/MAX32670/SPI_MasterSlave/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/SPI_MasterSlave/.vscode/settings.json b/Examples/MAX32670/SPI_MasterSlave/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/SPI_MasterSlave/.vscode/settings.json
+++ b/Examples/MAX32670/SPI_MasterSlave/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/SPI_MasterSlave/Makefile b/Examples/MAX32670/SPI_MasterSlave/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/SPI_MasterSlave/Makefile
+++ b/Examples/MAX32670/SPI_MasterSlave/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/SPI_MasterSlave/README.md b/Examples/MAX32670/SPI_MasterSlave/README.md
index 96cd8486df..178e53a9e0 100644
--- a/Examples/MAX32670/SPI_MasterSlave/README.md
+++ b/Examples/MAX32670/SPI_MasterSlave/README.md
@@ -11,7 +11,7 @@ Once the master ends the transaction, the data received by the master and the sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/SPI_MasterSlave/project.mk b/Examples/MAX32670/SPI_MasterSlave/project.mk
index 5dece4dfe6..a298e084ed 100644
--- a/Examples/MAX32670/SPI_MasterSlave/project.mk
+++ b/Examples/MAX32670/SPI_MasterSlave/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32670/SPI_Usecase/.vscode/README.md b/Examples/MAX32670/SPI_Usecase/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/SPI_Usecase/.vscode/README.md
+++ b/Examples/MAX32670/SPI_Usecase/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/SPI_Usecase/.vscode/settings.json b/Examples/MAX32670/SPI_Usecase/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/SPI_Usecase/.vscode/settings.json
+++ b/Examples/MAX32670/SPI_Usecase/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/SPI_Usecase/Makefile b/Examples/MAX32670/SPI_Usecase/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/SPI_Usecase/Makefile
+++ b/Examples/MAX32670/SPI_Usecase/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/SPI_Usecase/README.md b/Examples/MAX32670/SPI_Usecase/README.md
index 04cb8d7bcd..8d7dc1e6b7 100644
--- a/Examples/MAX32670/SPI_Usecase/README.md
+++ b/Examples/MAX32670/SPI_Usecase/README.md
@@ -9,7 +9,7 @@ Please connect SPI0 pins to SPI1 on EvKit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/SPI_Usecase/project.mk b/Examples/MAX32670/SPI_Usecase/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/SPI_Usecase/project.mk
+++ b/Examples/MAX32670/SPI_Usecase/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/SecureROM_BL_Host/.vscode/README.md b/Examples/MAX32670/SecureROM_BL_Host/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/SecureROM_BL_Host/.vscode/README.md
+++ b/Examples/MAX32670/SecureROM_BL_Host/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/SecureROM_BL_Host/.vscode/settings.json b/Examples/MAX32670/SecureROM_BL_Host/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/SecureROM_BL_Host/.vscode/settings.json
+++ b/Examples/MAX32670/SecureROM_BL_Host/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/SecureROM_BL_Host/Makefile b/Examples/MAX32670/SecureROM_BL_Host/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/SecureROM_BL_Host/Makefile
+++ b/Examples/MAX32670/SecureROM_BL_Host/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/SecureROM_BL_Host/README.md b/Examples/MAX32670/SecureROM_BL_Host/README.md
index aace9788db..e588f39cbd 100644
--- a/Examples/MAX32670/SecureROM_BL_Host/README.md
+++ b/Examples/MAX32670/SecureROM_BL_Host/README.md
@@ -22,7 +22,7 @@ Please check:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/SecureROM_BL_Host/project.mk b/Examples/MAX32670/SecureROM_BL_Host/project.mk
index 973bddf644..626673adfc 100644
--- a/Examples/MAX32670/SecureROM_BL_Host/project.mk
+++ b/Examples/MAX32670/SecureROM_BL_Host/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32670/SecureROM_BL_Host/script/README.md b/Examples/MAX32670/SecureROM_BL_Host/script/README.md
index af37678a52..a3f41e5bc9 100644
--- a/Examples/MAX32670/SecureROM_BL_Host/script/README.md
+++ b/Examples/MAX32670/SecureROM_BL_Host/script/README.md
@@ -9,7 +9,7 @@ then each packet array will linked with a C structure.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/TMR/.vscode/README.md b/Examples/MAX32670/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/TMR/.vscode/README.md
+++ b/Examples/MAX32670/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/TMR/.vscode/settings.json b/Examples/MAX32670/TMR/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/TMR/.vscode/settings.json
+++ b/Examples/MAX32670/TMR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/TMR/Makefile b/Examples/MAX32670/TMR/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/TMR/Makefile
+++ b/Examples/MAX32670/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/TMR/README.md b/Examples/MAX32670/TMR/README.md
index 7a39f9fe5c..3183c3c041 100644
--- a/Examples/MAX32670/TMR/README.md
+++ b/Examples/MAX32670/TMR/README.md
@@ -15,7 +15,7 @@ Push PB1 to start the timers.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/TMR/project.mk b/Examples/MAX32670/TMR/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/TMR/project.mk
+++ b/Examples/MAX32670/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/TRNG/.vscode/README.md b/Examples/MAX32670/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/TRNG/.vscode/README.md
+++ b/Examples/MAX32670/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/TRNG/.vscode/settings.json b/Examples/MAX32670/TRNG/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/TRNG/.vscode/settings.json
+++ b/Examples/MAX32670/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/TRNG/Makefile b/Examples/MAX32670/TRNG/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/TRNG/Makefile
+++ b/Examples/MAX32670/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/TRNG/README.md b/Examples/MAX32670/TRNG/README.md
index b3f644994d..c51f65d77d 100644
--- a/Examples/MAX32670/TRNG/README.md
+++ b/Examples/MAX32670/TRNG/README.md
@@ -7,7 +7,7 @@ The true random number generator (TRNG) hardware is exercised in this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/TRNG/project.mk b/Examples/MAX32670/TRNG/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/TRNG/project.mk
+++ b/Examples/MAX32670/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/Temp_Monitor/.vscode/README.md b/Examples/MAX32670/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX32670/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/Temp_Monitor/.vscode/settings.json b/Examples/MAX32670/Temp_Monitor/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX32670/Temp_Monitor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/Temp_Monitor/Makefile b/Examples/MAX32670/Temp_Monitor/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/Temp_Monitor/Makefile
+++ b/Examples/MAX32670/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/Temp_Monitor/README.md b/Examples/MAX32670/Temp_Monitor/README.md
index 861fbb9cc0..377a7b0243 100644
--- a/Examples/MAX32670/Temp_Monitor/README.md
+++ b/Examples/MAX32670/Temp_Monitor/README.md
@@ -15,7 +15,7 @@ The temperature limits, flash storage page, and RTC time-of-day alarm period are
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/Temp_Monitor/project.mk b/Examples/MAX32670/Temp_Monitor/project.mk
index 7e3d664eac..aebbcc92b4 100644
--- a/Examples/MAX32670/Temp_Monitor/project.mk
+++ b/Examples/MAX32670/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32670/UART/.vscode/README.md b/Examples/MAX32670/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/UART/.vscode/README.md
+++ b/Examples/MAX32670/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/UART/.vscode/settings.json b/Examples/MAX32670/UART/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/UART/.vscode/settings.json
+++ b/Examples/MAX32670/UART/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/UART/Makefile b/Examples/MAX32670/UART/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/UART/Makefile
+++ b/Examples/MAX32670/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/UART/README.md b/Examples/MAX32670/UART/README.md
index d4eb093f6d..ddbfe71132 100644
--- a/Examples/MAX32670/UART/README.md
+++ b/Examples/MAX32670/UART/README.md
@@ -7,7 +7,7 @@ This application uses two serial ports to send and receive data. One serial por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/UART/project.mk b/Examples/MAX32670/UART/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/UART/project.mk
+++ b/Examples/MAX32670/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/UCL/README.md b/Examples/MAX32670/UCL/README.md
index df6847b33d..a4abf5de01 100644
--- a/Examples/MAX32670/UCL/README.md
+++ b/Examples/MAX32670/UCL/README.md
@@ -9,7 +9,7 @@ TODO:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/UCL/project.mk b/Examples/MAX32670/UCL/project.mk
index f4c3945b5f..d880db33a8 100644
--- a/Examples/MAX32670/UCL/project.mk
+++ b/Examples/MAX32670/UCL/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/Watchdog/.vscode/README.md b/Examples/MAX32670/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/Watchdog/.vscode/README.md
+++ b/Examples/MAX32670/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/Watchdog/.vscode/settings.json b/Examples/MAX32670/Watchdog/.vscode/settings.json
index e5c5f9d88a..61b24bd673 100755
--- a/Examples/MAX32670/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32670/Watchdog/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/Watchdog/Makefile b/Examples/MAX32670/Watchdog/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/Watchdog/Makefile
+++ b/Examples/MAX32670/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/Watchdog/README.md b/Examples/MAX32670/Watchdog/README.md
index ac408a9a32..b5b24331c6 100644
--- a/Examples/MAX32670/Watchdog/README.md
+++ b/Examples/MAX32670/Watchdog/README.md
@@ -11,7 +11,7 @@ When the application begins, it initializes and starts the watchdog timer. The
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32670/Watchdog/project.mk b/Examples/MAX32670/Watchdog/project.mk
index d00f7f09f1..7e750c9c17 100644
--- a/Examples/MAX32670/Watchdog/project.mk
+++ b/Examples/MAX32670/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32670/WearLeveling/.vscode/README.md b/Examples/MAX32670/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32670/WearLeveling/.vscode/README.md
+++ b/Examples/MAX32670/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32670/WearLeveling/.vscode/settings.json b/Examples/MAX32670/WearLeveling/.vscode/settings.json
index 0d115f7db1..1e73c442ec 100755
--- a/Examples/MAX32670/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX32670/WearLeveling/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32670/WearLeveling/Makefile b/Examples/MAX32670/WearLeveling/Makefile
index 6a84afd0ff..b5795cd6e0 100644
--- a/Examples/MAX32670/WearLeveling/Makefile
+++ b/Examples/MAX32670/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32670/WearLeveling/README.md b/Examples/MAX32670/WearLeveling/README.md
index 5a5f5dffe7..e76b1f1855 100644
--- a/Examples/MAX32670/WearLeveling/README.md
+++ b/Examples/MAX32670/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32670EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32670EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32670/WearLeveling/project.mk b/Examples/MAX32670/WearLeveling/project.mk
index 3c23870cbe..26fc0b88ee 100644
--- a/Examples/MAX32670/WearLeveling/project.mk
+++ b/Examples/MAX32670/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32672/ADC/.vscode/README.md b/Examples/MAX32672/ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ADC/.vscode/README.md
+++ b/Examples/MAX32672/ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ADC/.vscode/settings.json b/Examples/MAX32672/ADC/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/ADC/.vscode/settings.json
+++ b/Examples/MAX32672/ADC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/ADC/Makefile b/Examples/MAX32672/ADC/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/ADC/Makefile
+++ b/Examples/MAX32672/ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ADC/README.md b/Examples/MAX32672/ADC/README.md
index 12d8ad93ee..a94caf5caa 100644
--- a/Examples/MAX32672/ADC/README.md
+++ b/Examples/MAX32672/ADC/README.md
@@ -14,7 +14,7 @@ The example can be configured to either use a polling, interrupt, or DMA driven
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/ADC/main.c b/Examples/MAX32672/ADC/main.c
index f75ae0198b..169fff2565 100644
--- a/Examples/MAX32672/ADC/main.c
+++ b/Examples/MAX32672/ADC/main.c
@@ -30,6 +30,7 @@
#include
#include "mxc_errors.h"
+#include "nvic_table.h"
#include "adc.h"
#include "dma.h"
#include "led.h"
diff --git a/Examples/MAX32672/ADC/project.mk b/Examples/MAX32672/ADC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/ADC/project.mk
+++ b/Examples/MAX32672/ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/AES/.vscode/README.md b/Examples/MAX32672/AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/AES/.vscode/README.md
+++ b/Examples/MAX32672/AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/AES/.vscode/settings.json b/Examples/MAX32672/AES/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/AES/.vscode/settings.json
+++ b/Examples/MAX32672/AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/AES/Makefile b/Examples/MAX32672/AES/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/AES/Makefile
+++ b/Examples/MAX32672/AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/AES/README.md b/Examples/MAX32672/AES/README.md
index 1c2ccd4727..8e1ebad549 100644
--- a/Examples/MAX32672/AES/README.md
+++ b/Examples/MAX32672/AES/README.md
@@ -6,7 +6,7 @@ This application demonstrates both encryption and decryption using AES. A block
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/AES/project.mk b/Examples/MAX32672/AES/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/AES/project.mk
+++ b/Examples/MAX32672/AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/ARM-DSP/README.md b/Examples/MAX32672/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32672/ARM-DSP/README.md
+++ b/Examples/MAX32672/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_bayes_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_bayes_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_convolution_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_convolution_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_fir_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_fir_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_matrix_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_matrix_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_svm_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_svm_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32672/ARM-DSP/arm_variance_example/Makefile
index af7aa76e12..7bb38ee42e 100644
--- a/Examples/MAX32672/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32672/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX32672/ARM-DSP/arm_variance_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32672/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX32672/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32672/CRC/.vscode/README.md b/Examples/MAX32672/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/CRC/.vscode/README.md
+++ b/Examples/MAX32672/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/CRC/.vscode/settings.json b/Examples/MAX32672/CRC/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/CRC/.vscode/settings.json
+++ b/Examples/MAX32672/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/CRC/Makefile b/Examples/MAX32672/CRC/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/CRC/Makefile
+++ b/Examples/MAX32672/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/CRC/README.md b/Examples/MAX32672/CRC/README.md
index e58fcf308d..7c6d52ae10 100644
--- a/Examples/MAX32672/CRC/README.md
+++ b/Examples/MAX32672/CRC/README.md
@@ -6,7 +6,7 @@ This example demonstrates the use of the HW CRC calculator. The example first g
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/CRC/project.mk b/Examples/MAX32672/CRC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/CRC/project.mk
+++ b/Examples/MAX32672/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/CTB_AES/.vscode/README.md b/Examples/MAX32672/CTB_AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/CTB_AES/.vscode/README.md
+++ b/Examples/MAX32672/CTB_AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/CTB_AES/.vscode/settings.json b/Examples/MAX32672/CTB_AES/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/CTB_AES/.vscode/settings.json
+++ b/Examples/MAX32672/CTB_AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/CTB_AES/Makefile b/Examples/MAX32672/CTB_AES/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/CTB_AES/Makefile
+++ b/Examples/MAX32672/CTB_AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/CTB_AES/README.md b/Examples/MAX32672/CTB_AES/README.md
index 8c81b40d6d..7bacb2ae2f 100644
--- a/Examples/MAX32672/CTB_AES/README.md
+++ b/Examples/MAX32672/CTB_AES/README.md
@@ -6,7 +6,7 @@ This application demonstrates both encryption and decryption using the Crypto To
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/CTB_AES/project.mk b/Examples/MAX32672/CTB_AES/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/CTB_AES/project.mk
+++ b/Examples/MAX32672/CTB_AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Comparator/.vscode/README.md b/Examples/MAX32672/Comparator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Comparator/.vscode/README.md
+++ b/Examples/MAX32672/Comparator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Comparator/.vscode/settings.json b/Examples/MAX32672/Comparator/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/Comparator/.vscode/settings.json
+++ b/Examples/MAX32672/Comparator/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/Comparator/Makefile b/Examples/MAX32672/Comparator/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Comparator/Makefile
+++ b/Examples/MAX32672/Comparator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Comparator/README.md b/Examples/MAX32672/Comparator/README.md
index 1effdb1de6..cd90dd1a4f 100644
--- a/Examples/MAX32672/Comparator/README.md
+++ b/Examples/MAX32672/Comparator/README.md
@@ -8,7 +8,7 @@ The example is configured to use analog channels 3 and 7 as the negative and pos
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/Comparator/project.mk b/Examples/MAX32672/Comparator/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/Comparator/project.mk
+++ b/Examples/MAX32672/Comparator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Coremark/.vscode/README.md b/Examples/MAX32672/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Coremark/.vscode/README.md
+++ b/Examples/MAX32672/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Coremark/.vscode/settings.json b/Examples/MAX32672/Coremark/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/Coremark/.vscode/settings.json
+++ b/Examples/MAX32672/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/Coremark/Makefile b/Examples/MAX32672/Coremark/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Coremark/Makefile
+++ b/Examples/MAX32672/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Coremark/README.md b/Examples/MAX32672/Coremark/README.md
index 68587d0f3d..76e31439f2 100644
--- a/Examples/MAX32672/Coremark/README.md
+++ b/Examples/MAX32672/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/Coremark/project.mk b/Examples/MAX32672/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32672/Coremark/project.mk
+++ b/Examples/MAX32672/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/DMA/.vscode/README.md b/Examples/MAX32672/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/DMA/.vscode/README.md
+++ b/Examples/MAX32672/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/DMA/.vscode/settings.json b/Examples/MAX32672/DMA/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/DMA/.vscode/settings.json
+++ b/Examples/MAX32672/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/DMA/Makefile b/Examples/MAX32672/DMA/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/DMA/Makefile
+++ b/Examples/MAX32672/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/DMA/README.md b/Examples/MAX32672/DMA/README.md
index 7fd1999d3f..30b638ae74 100644
--- a/Examples/MAX32672/DMA/README.md
+++ b/Examples/MAX32672/DMA/README.md
@@ -8,7 +8,7 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/DMA/project.mk b/Examples/MAX32672/DMA/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/DMA/project.mk
+++ b/Examples/MAX32672/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Demo/.vscode/README.md b/Examples/MAX32672/Demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Demo/.vscode/README.md
+++ b/Examples/MAX32672/Demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Demo/.vscode/settings.json b/Examples/MAX32672/Demo/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/Demo/.vscode/settings.json
+++ b/Examples/MAX32672/Demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/Demo/Makefile b/Examples/MAX32672/Demo/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Demo/Makefile
+++ b/Examples/MAX32672/Demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Demo/README.md b/Examples/MAX32672/Demo/README.md
index 5b30188a2b..3f9ed39bbd 100644
--- a/Examples/MAX32672/Demo/README.md
+++ b/Examples/MAX32672/Demo/README.md
@@ -12,7 +12,7 @@ Features:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/Demo/project.mk b/Examples/MAX32672/Demo/project.mk
index 3124516bc7..e285667d5b 100644
--- a/Examples/MAX32672/Demo/project.mk
+++ b/Examples/MAX32672/Demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Display/.vscode/README.md b/Examples/MAX32672/Display/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Display/.vscode/README.md
+++ b/Examples/MAX32672/Display/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Display/.vscode/settings.json b/Examples/MAX32672/Display/.vscode/settings.json
index 4ead0be618..912cda38bf 100755
--- a/Examples/MAX32672/Display/.vscode/settings.json
+++ b/Examples/MAX32672/Display/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src/**",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,6 +67,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -75,7 +76,6 @@
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src/**",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/Display/Makefile b/Examples/MAX32672/Display/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Display/Makefile
+++ b/Examples/MAX32672/Display/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Display/README.md b/Examples/MAX32672/Display/README.md
index 4a600cd2f9..99b820dbbe 100644
--- a/Examples/MAX32672/Display/README.md
+++ b/Examples/MAX32672/Display/README.md
@@ -17,7 +17,7 @@ Note: This example only works on MAX32672EVKIT not on MAX32672FTHR board.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/Display/project.mk b/Examples/MAX32672/Display/project.mk
index 7a04f42314..63479f3c39 100644
--- a/Examples/MAX32672/Display/project.mk
+++ b/Examples/MAX32672/Display/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32672/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32672/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32672/EEPROM_Emulator/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32672/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/EEPROM_Emulator/Makefile b/Examples/MAX32672/EEPROM_Emulator/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32672/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/EEPROM_Emulator/README.md b/Examples/MAX32672/EEPROM_Emulator/README.md
index 81da789bd9..656e1d1d86 100644
--- a/Examples/MAX32672/EEPROM_Emulator/README.md
+++ b/Examples/MAX32672/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32672 to emulate a 32KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -47,7 +47,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/EEPROM_Emulator/project.mk b/Examples/MAX32672/EEPROM_Emulator/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32672/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Flash/.vscode/README.md b/Examples/MAX32672/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Flash/.vscode/README.md
+++ b/Examples/MAX32672/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Flash/.vscode/settings.json b/Examples/MAX32672/Flash/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/Flash/.vscode/settings.json
+++ b/Examples/MAX32672/Flash/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/Flash/Makefile b/Examples/MAX32672/Flash/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Flash/Makefile
+++ b/Examples/MAX32672/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Flash/README.md b/Examples/MAX32672/Flash/README.md
index fe4eb2df87..a7ac6d7167 100644
--- a/Examples/MAX32672/Flash/README.md
+++ b/Examples/MAX32672/Flash/README.md
@@ -21,7 +21,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -42,9 +42,9 @@ If using the MAX32672FTHR:
## Building and Running
-**See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
+**See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
-This example supports all available MAX32672 evaluation platforms but comes _pre-configured_ for the MAX32672EVKIT by default. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
+This example supports all available MAX32672 evaluation platforms but comes _pre-configured_ for the MAX32672EVKIT by default. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
## Expected Output
diff --git a/Examples/MAX32672/Flash/project.mk b/Examples/MAX32672/Flash/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/Flash/project.mk
+++ b/Examples/MAX32672/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Flash_CLI/.vscode/README.md b/Examples/MAX32672/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32672/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Flash_CLI/.vscode/settings.json b/Examples/MAX32672/Flash_CLI/.vscode/settings.json
index ee334789f6..e21c82d171 100755
--- a/Examples/MAX32672/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32672/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/Flash_CLI/Makefile b/Examples/MAX32672/Flash_CLI/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Flash_CLI/Makefile
+++ b/Examples/MAX32672/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Flash_CLI/README.md b/Examples/MAX32672/Flash_CLI/README.md
index dbe7a8bb67..003a9dfa45 100644
--- a/Examples/MAX32672/Flash_CLI/README.md
+++ b/Examples/MAX32672/Flash_CLI/README.md
@@ -16,7 +16,7 @@ For more details on how to input these commands, enter "help" in the terminal wi
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/Flash_CLI/project.mk b/Examples/MAX32672/Flash_CLI/project.mk
index a2da2efeb7..b46ded3d1d 100644
--- a/Examples/MAX32672/Flash_CLI/project.mk
+++ b/Examples/MAX32672/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32672/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX32672/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX32672/FreeRTOSDemo/.vscode/settings.json
index aa85dc0cca..2e3b3fbbb0 100755
--- a/Examples/MAX32672/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX32672/FreeRTOSDemo/.vscode/settings.json
@@ -48,13 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -68,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -75,7 +76,6 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32672/FreeRTOSDemo/Makefile b/Examples/MAX32672/FreeRTOSDemo/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/FreeRTOSDemo/Makefile
+++ b/Examples/MAX32672/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/FreeRTOSDemo/README.md b/Examples/MAX32672/FreeRTOSDemo/README.md
index cba94d1464..688b75c646 100644
--- a/Examples/MAX32672/FreeRTOSDemo/README.md
+++ b/Examples/MAX32672/FreeRTOSDemo/README.md
@@ -19,7 +19,7 @@ For more information on how to input these commands enter "help" into the serial
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/FreeRTOSDemo/project.mk b/Examples/MAX32672/FreeRTOSDemo/project.mk
index a2da2efeb7..b46ded3d1d 100644
--- a/Examples/MAX32672/FreeRTOSDemo/project.mk
+++ b/Examples/MAX32672/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/GPIO/.vscode/README.md b/Examples/MAX32672/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/GPIO/.vscode/README.md
+++ b/Examples/MAX32672/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/GPIO/.vscode/settings.json b/Examples/MAX32672/GPIO/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/GPIO/.vscode/settings.json
+++ b/Examples/MAX32672/GPIO/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/GPIO/Makefile b/Examples/MAX32672/GPIO/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/GPIO/Makefile
+++ b/Examples/MAX32672/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/GPIO/README.md b/Examples/MAX32672/GPIO/README.md
index 7a82726b92..9dc4599a81 100644
--- a/Examples/MAX32672/GPIO/README.md
+++ b/Examples/MAX32672/GPIO/README.md
@@ -8,7 +8,7 @@ An interrupt is set up to trigger when the button (SW3, P0.18) is pressed. When
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/GPIO/project.mk b/Examples/MAX32672/GPIO/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/GPIO/project.mk
+++ b/Examples/MAX32672/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Hello_World/.vscode/README.md b/Examples/MAX32672/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Hello_World/.vscode/README.md
+++ b/Examples/MAX32672/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Hello_World/.vscode/settings.json b/Examples/MAX32672/Hello_World/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32672/Hello_World/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/Hello_World/Makefile b/Examples/MAX32672/Hello_World/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Hello_World/Makefile
+++ b/Examples/MAX32672/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Hello_World/README.md b/Examples/MAX32672/Hello_World/README.md
index 9f2d4d89da..0456f616c5 100644
--- a/Examples/MAX32672/Hello_World/README.md
+++ b/Examples/MAX32672/Hello_World/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/Hello_World/project.mk b/Examples/MAX32672/Hello_World/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/Hello_World/project.mk
+++ b/Examples/MAX32672/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32672/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32672/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32672/Hello_World_Cpp/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32672/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/Hello_World_Cpp/Makefile b/Examples/MAX32672/Hello_World_Cpp/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32672/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Hello_World_Cpp/README.md b/Examples/MAX32672/Hello_World_Cpp/README.md
index 1a590d3ea1..f35c05f182 100644
--- a/Examples/MAX32672/Hello_World_Cpp/README.md
+++ b/Examples/MAX32672/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/Hello_World_Cpp/project.mk b/Examples/MAX32672/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32672/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32672/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32672/I2C/.vscode/README.md b/Examples/MAX32672/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/I2C/.vscode/README.md
+++ b/Examples/MAX32672/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/I2C/.vscode/settings.json b/Examples/MAX32672/I2C/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/I2C/.vscode/settings.json
+++ b/Examples/MAX32672/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/I2C/Makefile b/Examples/MAX32672/I2C/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/I2C/Makefile
+++ b/Examples/MAX32672/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/I2C/README.md b/Examples/MAX32672/I2C/README.md
index 4b64dd17ea..f2939ad549 100644
--- a/Examples/MAX32672/I2C/README.md
+++ b/Examples/MAX32672/I2C/README.md
@@ -6,7 +6,7 @@ This example uses the I2C0 as an I2C master to read/write from/to I2C2, an I2C s
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/I2C/project.mk b/Examples/MAX32672/I2C/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/I2C/project.mk
+++ b/Examples/MAX32672/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/I2C_MNGR/.vscode/README.md b/Examples/MAX32672/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32672/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/I2C_MNGR/.vscode/settings.json b/Examples/MAX32672/I2C_MNGR/.vscode/settings.json
index 3646c5b43d..aa189aac12 100755
--- a/Examples/MAX32672/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32672/I2C_MNGR/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX32672/I2C_MNGR/Makefile b/Examples/MAX32672/I2C_MNGR/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/I2C_MNGR/Makefile
+++ b/Examples/MAX32672/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/I2C_MNGR/README.md b/Examples/MAX32672/I2C_MNGR/README.md
index b182a7cb92..fc9438ca4e 100644
--- a/Examples/MAX32672/I2C_MNGR/README.md
+++ b/Examples/MAX32672/I2C_MNGR/README.md
@@ -8,7 +8,7 @@ More specifically, in this example the EEPROM0 task attempts to read data from E
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/I2C_MNGR/project.mk b/Examples/MAX32672/I2C_MNGR/project.mk
index afefae0c40..c006c3ef92 100644
--- a/Examples/MAX32672/I2C_MNGR/project.mk
+++ b/Examples/MAX32672/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/I2C_SCAN/.vscode/README.md b/Examples/MAX32672/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32672/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/I2C_SCAN/.vscode/settings.json b/Examples/MAX32672/I2C_SCAN/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32672/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/I2C_SCAN/Makefile b/Examples/MAX32672/I2C_SCAN/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/I2C_SCAN/Makefile
+++ b/Examples/MAX32672/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/I2C_SCAN/README.md b/Examples/MAX32672/I2C_SCAN/README.md
index f23fb817f4..898d272cc1 100644
--- a/Examples/MAX32672/I2C_SCAN/README.md
+++ b/Examples/MAX32672/I2C_SCAN/README.md
@@ -6,7 +6,7 @@ This example finds the addresses of any I2C Slave devices connected to the bus.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/I2C_SCAN/project.mk b/Examples/MAX32672/I2C_SCAN/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/I2C_SCAN/project.mk
+++ b/Examples/MAX32672/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/I2C_Sensor/.vscode/README.md b/Examples/MAX32672/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32672/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/I2C_Sensor/.vscode/settings.json b/Examples/MAX32672/I2C_Sensor/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32672/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/I2C_Sensor/Makefile b/Examples/MAX32672/I2C_Sensor/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/I2C_Sensor/Makefile
+++ b/Examples/MAX32672/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/I2C_Sensor/README.md b/Examples/MAX32672/I2C_Sensor/README.md
index 3dd88ee907..8105e52b27 100644
--- a/Examples/MAX32672/I2C_Sensor/README.md
+++ b/Examples/MAX32672/I2C_Sensor/README.md
@@ -8,7 +8,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/I2C_Sensor/project.mk b/Examples/MAX32672/I2C_Sensor/project.mk
index 7d28c02d02..3c3d48bae5 100644
--- a/Examples/MAX32672/I2C_Sensor/project.mk
+++ b/Examples/MAX32672/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/I2S/.vscode/README.md b/Examples/MAX32672/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/I2S/.vscode/README.md
+++ b/Examples/MAX32672/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/I2S/.vscode/settings.json b/Examples/MAX32672/I2S/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/I2S/.vscode/settings.json
+++ b/Examples/MAX32672/I2S/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/I2S/Makefile b/Examples/MAX32672/I2S/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/I2S/Makefile
+++ b/Examples/MAX32672/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/I2S/README.md b/Examples/MAX32672/I2S/README.md
index 0646070c25..57aa33a0ec 100644
--- a/Examples/MAX32672/I2S/README.md
+++ b/Examples/MAX32672/I2S/README.md
@@ -6,7 +6,7 @@ This example demonstrates the use of I2S peripheral. In this example sixty four
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/I2S/project.mk b/Examples/MAX32672/I2S/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/I2S/project.mk
+++ b/Examples/MAX32672/I2S/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/ICC/.vscode/README.md b/Examples/MAX32672/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/ICC/.vscode/README.md
+++ b/Examples/MAX32672/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/ICC/.vscode/settings.json b/Examples/MAX32672/ICC/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/ICC/.vscode/settings.json
+++ b/Examples/MAX32672/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/ICC/Makefile b/Examples/MAX32672/ICC/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/ICC/Makefile
+++ b/Examples/MAX32672/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/ICC/README.md b/Examples/MAX32672/ICC/README.md
index bc452c5d47..3bbca2f374 100644
--- a/Examples/MAX32672/ICC/README.md
+++ b/Examples/MAX32672/ICC/README.md
@@ -8,7 +8,7 @@ Two test functions (one which runs 2.5 million operations and the other which ru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/ICC/project.mk b/Examples/MAX32672/ICC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/ICC/project.mk
+++ b/Examples/MAX32672/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/LP/.vscode/README.md b/Examples/MAX32672/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/LP/.vscode/README.md
+++ b/Examples/MAX32672/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/LP/.vscode/settings.json b/Examples/MAX32672/LP/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/LP/.vscode/settings.json
+++ b/Examples/MAX32672/LP/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/LP/Makefile b/Examples/MAX32672/LP/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/LP/Makefile
+++ b/Examples/MAX32672/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/LP/README.md b/Examples/MAX32672/LP/README.md
index 672e3ed799..0f51a7c98a 100644
--- a/Examples/MAX32672/LP/README.md
+++ b/Examples/MAX32672/LP/README.md
@@ -10,7 +10,7 @@ Either the push button or the RTC may be used as a wakeup source in this example
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/LP/project.mk b/Examples/MAX32672/LP/project.mk
index 434fa76353..5ff4d85f78 100644
--- a/Examples/MAX32672/LP/project.mk
+++ b/Examples/MAX32672/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Library_Generate/.vscode/README.md b/Examples/MAX32672/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32672/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32672/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32672/Library_Generate/Makefile b/Examples/MAX32672/Library_Generate/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Library_Generate/Makefile
+++ b/Examples/MAX32672/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Library_Generate/README.md b/Examples/MAX32672/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32672/Library_Generate/README.md
+++ b/Examples/MAX32672/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/Library_Generate/project.mk b/Examples/MAX32672/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32672/Library_Generate/project.mk
+++ b/Examples/MAX32672/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Library_Use/.vscode/README.md b/Examples/MAX32672/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Library_Use/.vscode/README.md
+++ b/Examples/MAX32672/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Library_Use/.vscode/settings.json b/Examples/MAX32672/Library_Use/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32672/Library_Use/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/Library_Use/Makefile b/Examples/MAX32672/Library_Use/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Library_Use/Makefile
+++ b/Examples/MAX32672/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Library_Use/README.md b/Examples/MAX32672/Library_Use/README.md
index 1400bc1cb9..ee2687a6b9 100644
--- a/Examples/MAX32672/Library_Use/README.md
+++ b/Examples/MAX32672/Library_Use/README.md
@@ -9,11 +9,11 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-This example supports all available MAX32672 evaluation platforms but comes _pre-configured_ for the MAX32672EVKIT by default. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
+This example supports all available MAX32672 evaluation platforms but comes _pre-configured_ for the MAX32672EVKIT by default. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
## Required Connections
diff --git a/Examples/MAX32672/Library_Use/project.mk b/Examples/MAX32672/Library_Use/project.mk
index ac32a7de2e..f724d98b79 100644
--- a/Examples/MAX32672/Library_Use/project.mk
+++ b/Examples/MAX32672/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/OLED_Demo/.vscode/README.md b/Examples/MAX32672/OLED_Demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/OLED_Demo/.vscode/README.md
+++ b/Examples/MAX32672/OLED_Demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/OLED_Demo/.vscode/settings.json b/Examples/MAX32672/OLED_Demo/.vscode/settings.json
index 6ca81f10ff..23f6a1c2b4 100755
--- a/Examples/MAX32672/OLED_Demo/.vscode/settings.json
+++ b/Examples/MAX32672/OLED_Demo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src/**",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,6 +67,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -75,7 +76,6 @@
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src",
"${config:MAXIM_PATH}/Libraries/LVGL/lvgl/src/**",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/OLED_Demo/Makefile b/Examples/MAX32672/OLED_Demo/Makefile
index 8fdbd0b995..41c30d5dd1 100644
--- a/Examples/MAX32672/OLED_Demo/Makefile
+++ b/Examples/MAX32672/OLED_Demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/OLED_Demo/README.md b/Examples/MAX32672/OLED_Demo/README.md
index cddc0b5263..581cf856a5 100644
--- a/Examples/MAX32672/OLED_Demo/README.md
+++ b/Examples/MAX32672/OLED_Demo/README.md
@@ -15,7 +15,7 @@ Please check project.mk to learn how compile lvgl in MSDK.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/OLED_Demo/project.mk b/Examples/MAX32672/OLED_Demo/project.mk
index 93083bc832..ddaac4e6ee 100644
--- a/Examples/MAX32672/OLED_Demo/project.mk
+++ b/Examples/MAX32672/OLED_Demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/QDEC/.vscode/README.md b/Examples/MAX32672/QDEC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/QDEC/.vscode/README.md
+++ b/Examples/MAX32672/QDEC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/QDEC/.vscode/settings.json b/Examples/MAX32672/QDEC/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/QDEC/.vscode/settings.json
+++ b/Examples/MAX32672/QDEC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/QDEC/Makefile b/Examples/MAX32672/QDEC/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/QDEC/Makefile
+++ b/Examples/MAX32672/QDEC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/QDEC/README.md b/Examples/MAX32672/QDEC/README.md
index 6714612d82..1701ff7cf7 100644
--- a/Examples/MAX32672/QDEC/README.md
+++ b/Examples/MAX32672/QDEC/README.md
@@ -8,7 +8,7 @@ The example configures the QDEC with the Compare and Reset on MAXCNT functions.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/QDEC/project.mk b/Examples/MAX32672/QDEC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/QDEC/project.mk
+++ b/Examples/MAX32672/QDEC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/RTC/.vscode/README.md b/Examples/MAX32672/RTC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/RTC/.vscode/README.md
+++ b/Examples/MAX32672/RTC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/RTC/.vscode/settings.json b/Examples/MAX32672/RTC/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/RTC/.vscode/settings.json
+++ b/Examples/MAX32672/RTC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/RTC/Makefile b/Examples/MAX32672/RTC/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/RTC/Makefile
+++ b/Examples/MAX32672/RTC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/RTC/README.md b/Examples/MAX32672/RTC/README.md
index 8bdd3ead03..160c4e9786 100644
--- a/Examples/MAX32672/RTC/README.md
+++ b/Examples/MAX32672/RTC/README.md
@@ -13,7 +13,7 @@ Pressing SW3 will output the current value of the RTC to the console UART.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/RTC/project.mk b/Examples/MAX32672/RTC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/RTC/project.mk
+++ b/Examples/MAX32672/RTC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/RTC_Backup/.vscode/README.md b/Examples/MAX32672/RTC_Backup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/RTC_Backup/.vscode/README.md
+++ b/Examples/MAX32672/RTC_Backup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/RTC_Backup/.vscode/settings.json b/Examples/MAX32672/RTC_Backup/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/RTC_Backup/.vscode/settings.json
+++ b/Examples/MAX32672/RTC_Backup/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/RTC_Backup/Makefile b/Examples/MAX32672/RTC_Backup/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/RTC_Backup/Makefile
+++ b/Examples/MAX32672/RTC_Backup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/RTC_Backup/README.md b/Examples/MAX32672/RTC_Backup/README.md
index ae38f4b356..5c984fd1c4 100644
--- a/Examples/MAX32672/RTC_Backup/README.md
+++ b/Examples/MAX32672/RTC_Backup/README.md
@@ -8,7 +8,7 @@ The RTC time-of-day alarm is used to wake the device from backup mode every TIME
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/RTC_Backup/project.mk b/Examples/MAX32672/RTC_Backup/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/RTC_Backup/project.mk
+++ b/Examples/MAX32672/RTC_Backup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32672/SCPA_OTP_Dump/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/SCPA_OTP_Dump/.vscode/README.md
+++ b/Examples/MAX32672/SCPA_OTP_Dump/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/SCPA_OTP_Dump/.vscode/settings.json b/Examples/MAX32672/SCPA_OTP_Dump/.vscode/settings.json
index f77f5db1c6..8bac05e1c5 100755
--- a/Examples/MAX32672/SCPA_OTP_Dump/.vscode/settings.json
+++ b/Examples/MAX32672/SCPA_OTP_Dump/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/SCPA_OTP_Dump/Makefile b/Examples/MAX32672/SCPA_OTP_Dump/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/SCPA_OTP_Dump/Makefile
+++ b/Examples/MAX32672/SCPA_OTP_Dump/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/SCPA_OTP_Dump/README.md b/Examples/MAX32672/SCPA_OTP_Dump/README.md
index 4e44ac5550..07ff917c71 100644
--- a/Examples/MAX32672/SCPA_OTP_Dump/README.md
+++ b/Examples/MAX32672/SCPA_OTP_Dump/README.md
@@ -18,7 +18,7 @@ PROJ_CFLAGS+=-DMAX32672_A1
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/SCPA_OTP_Dump/project.mk b/Examples/MAX32672/SCPA_OTP_Dump/project.mk
index ac5d312d36..6ca165a071 100644
--- a/Examples/MAX32672/SCPA_OTP_Dump/project.mk
+++ b/Examples/MAX32672/SCPA_OTP_Dump/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/SPI/.vscode/README.md b/Examples/MAX32672/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/SPI/.vscode/README.md
+++ b/Examples/MAX32672/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/SPI/.vscode/settings.json b/Examples/MAX32672/SPI/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/SPI/.vscode/settings.json
+++ b/Examples/MAX32672/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/SPI/Makefile b/Examples/MAX32672/SPI/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/SPI/Makefile
+++ b/Examples/MAX32672/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/SPI/README.md b/Examples/MAX32672/SPI/README.md
index 1e32af5d99..d416394e28 100644
--- a/Examples/MAX32672/SPI/README.md
+++ b/Examples/MAX32672/SPI/README.md
@@ -10,7 +10,7 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/SPI/project.mk b/Examples/MAX32672/SPI/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/SPI/project.mk
+++ b/Examples/MAX32672/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32672/SPI_MasterSlave/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/SPI_MasterSlave/.vscode/README.md
+++ b/Examples/MAX32672/SPI_MasterSlave/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/SPI_MasterSlave/.vscode/settings.json b/Examples/MAX32672/SPI_MasterSlave/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/SPI_MasterSlave/.vscode/settings.json
+++ b/Examples/MAX32672/SPI_MasterSlave/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/SPI_MasterSlave/Makefile b/Examples/MAX32672/SPI_MasterSlave/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/SPI_MasterSlave/Makefile
+++ b/Examples/MAX32672/SPI_MasterSlave/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/SPI_MasterSlave/README.md b/Examples/MAX32672/SPI_MasterSlave/README.md
index 5a4112c868..713aca74b8 100644
--- a/Examples/MAX32672/SPI_MasterSlave/README.md
+++ b/Examples/MAX32672/SPI_MasterSlave/README.md
@@ -10,7 +10,7 @@ Once the master ends the transaction, the data received by the master and the sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/SPI_MasterSlave/project.mk b/Examples/MAX32672/SPI_MasterSlave/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/SPI_MasterSlave/project.mk
+++ b/Examples/MAX32672/SPI_MasterSlave/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/TMR/.vscode/README.md b/Examples/MAX32672/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/TMR/.vscode/README.md
+++ b/Examples/MAX32672/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/TMR/.vscode/settings.json b/Examples/MAX32672/TMR/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/TMR/.vscode/settings.json
+++ b/Examples/MAX32672/TMR/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/TMR/Makefile b/Examples/MAX32672/TMR/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/TMR/Makefile
+++ b/Examples/MAX32672/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/TMR/README.md b/Examples/MAX32672/TMR/README.md
index 9747171919..0e0d099caa 100644
--- a/Examples/MAX32672/TMR/README.md
+++ b/Examples/MAX32672/TMR/README.md
@@ -14,7 +14,7 @@ LED pins on FTHR board: LED0:P0.2 LED1:P0.3
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/TMR/project.mk b/Examples/MAX32672/TMR/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/TMR/project.mk
+++ b/Examples/MAX32672/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/TRNG/.vscode/README.md b/Examples/MAX32672/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/TRNG/.vscode/README.md
+++ b/Examples/MAX32672/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/TRNG/.vscode/settings.json b/Examples/MAX32672/TRNG/.vscode/settings.json
index c57b44a0c5..2d8de59c15 100755
--- a/Examples/MAX32672/TRNG/.vscode/settings.json
+++ b/Examples/MAX32672/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32672/TRNG/Makefile b/Examples/MAX32672/TRNG/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/TRNG/Makefile
+++ b/Examples/MAX32672/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/TRNG/README.md b/Examples/MAX32672/TRNG/README.md
index 467252224e..6350d061da 100644
--- a/Examples/MAX32672/TRNG/README.md
+++ b/Examples/MAX32672/TRNG/README.md
@@ -6,7 +6,7 @@ The true random number generator (TRNG) hardware is exercised in this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/TRNG/project.mk b/Examples/MAX32672/TRNG/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/TRNG/project.mk
+++ b/Examples/MAX32672/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Temp_Monitor/.vscode/README.md b/Examples/MAX32672/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX32672/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Temp_Monitor/.vscode/settings.json b/Examples/MAX32672/Temp_Monitor/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX32672/Temp_Monitor/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/Temp_Monitor/Makefile b/Examples/MAX32672/Temp_Monitor/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Temp_Monitor/Makefile
+++ b/Examples/MAX32672/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Temp_Monitor/README.md b/Examples/MAX32672/Temp_Monitor/README.md
index 7d617d1b7b..44c41a3f82 100644
--- a/Examples/MAX32672/Temp_Monitor/README.md
+++ b/Examples/MAX32672/Temp_Monitor/README.md
@@ -14,7 +14,7 @@ The temperature limits, flash storage page, and RTC time-of-day alarm period are
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/Temp_Monitor/project.mk b/Examples/MAX32672/Temp_Monitor/project.mk
index 3dac63882e..8fdc33ccc4 100644
--- a/Examples/MAX32672/Temp_Monitor/project.mk
+++ b/Examples/MAX32672/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/UART/.vscode/README.md b/Examples/MAX32672/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/UART/.vscode/README.md
+++ b/Examples/MAX32672/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/UART/.vscode/settings.json b/Examples/MAX32672/UART/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/UART/.vscode/settings.json
+++ b/Examples/MAX32672/UART/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/UART/Makefile b/Examples/MAX32672/UART/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/UART/Makefile
+++ b/Examples/MAX32672/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/UART/README.md b/Examples/MAX32672/UART/README.md
index ea71b4ece1..f0fbffcbe5 100644
--- a/Examples/MAX32672/UART/README.md
+++ b/Examples/MAX32672/UART/README.md
@@ -8,7 +8,7 @@ By default the reading UART does an asynchronus read, however it can instead do
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/UART/project.mk b/Examples/MAX32672/UART/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/UART/project.mk
+++ b/Examples/MAX32672/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/UCL/README.md b/Examples/MAX32672/UCL/README.md
index 2b9d26b8fb..0deb41f750 100644
--- a/Examples/MAX32672/UCL/README.md
+++ b/Examples/MAX32672/UCL/README.md
@@ -9,7 +9,7 @@ TODO:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/UCL/project.mk b/Examples/MAX32672/UCL/project.mk
index e0e2eca905..62c6aa45bf 100644
--- a/Examples/MAX32672/UCL/project.mk
+++ b/Examples/MAX32672/UCL/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/Watchdog/.vscode/README.md b/Examples/MAX32672/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/Watchdog/.vscode/README.md
+++ b/Examples/MAX32672/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/Watchdog/.vscode/settings.json b/Examples/MAX32672/Watchdog/.vscode/settings.json
index df3706afff..f6f84d2603 100755
--- a/Examples/MAX32672/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32672/Watchdog/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX32672/Watchdog/Makefile b/Examples/MAX32672/Watchdog/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/Watchdog/Makefile
+++ b/Examples/MAX32672/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/Watchdog/README.md b/Examples/MAX32672/Watchdog/README.md
index 25a2667b4b..f36685a344 100644
--- a/Examples/MAX32672/Watchdog/README.md
+++ b/Examples/MAX32672/Watchdog/README.md
@@ -10,7 +10,7 @@ When SW3 (P0.18) is pressed, the application will intentionally force a watchdog
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32672/Watchdog/project.mk b/Examples/MAX32672/Watchdog/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32672/Watchdog/project.mk
+++ b/Examples/MAX32672/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32672/WearLeveling/.vscode/README.md b/Examples/MAX32672/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32672/WearLeveling/.vscode/README.md
+++ b/Examples/MAX32672/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32672/WearLeveling/.vscode/settings.json b/Examples/MAX32672/WearLeveling/.vscode/settings.json
index 79ccfbf502..f862c5f382 100755
--- a/Examples/MAX32672/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX32672/WearLeveling/.vscode/settings.json
@@ -48,13 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/CLI/inc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/littlefs",
@@ -67,6 +67,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -74,7 +75,6 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/CLI/src",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/littlefs",
diff --git a/Examples/MAX32672/WearLeveling/Makefile b/Examples/MAX32672/WearLeveling/Makefile
index e4445b6579..b0b9c0a7ff 100644
--- a/Examples/MAX32672/WearLeveling/Makefile
+++ b/Examples/MAX32672/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32672/WearLeveling/README.md b/Examples/MAX32672/WearLeveling/README.md
index 11a0a7bb01..9e0b203a6f 100644
--- a/Examples/MAX32672/WearLeveling/README.md
+++ b/Examples/MAX32672/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32672EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32672EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32672/WearLeveling/project.mk b/Examples/MAX32672/WearLeveling/project.mk
index 1cd2244f45..3137986a32 100644
--- a/Examples/MAX32672/WearLeveling/project.mk
+++ b/Examples/MAX32672/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32675/ADC/.vscode/README.md b/Examples/MAX32675/ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ADC/.vscode/README.md
+++ b/Examples/MAX32675/ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ADC/.vscode/settings.json b/Examples/MAX32675/ADC/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/ADC/.vscode/settings.json
+++ b/Examples/MAX32675/ADC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ADC/Makefile b/Examples/MAX32675/ADC/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/ADC/Makefile
+++ b/Examples/MAX32675/ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ADC/README.md b/Examples/MAX32675/ADC/README.md
index 771208c4c5..2eeb0cc49b 100644
--- a/Examples/MAX32675/ADC/README.md
+++ b/Examples/MAX32675/ADC/README.md
@@ -9,7 +9,7 @@ Each of the ADC modules are set to sample differentially between ADC channels AI
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/ADC/project.mk b/Examples/MAX32675/ADC/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/ADC/project.mk
+++ b/Examples/MAX32675/ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/AES/.vscode/README.md b/Examples/MAX32675/AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/AES/.vscode/README.md
+++ b/Examples/MAX32675/AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/AES/.vscode/settings.json b/Examples/MAX32675/AES/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/AES/.vscode/settings.json
+++ b/Examples/MAX32675/AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/AES/Makefile b/Examples/MAX32675/AES/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/AES/Makefile
+++ b/Examples/MAX32675/AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/AES/README.md b/Examples/MAX32675/AES/README.md
index 419955f882..d88d5aed44 100644
--- a/Examples/MAX32675/AES/README.md
+++ b/Examples/MAX32675/AES/README.md
@@ -7,7 +7,7 @@ This application demonstrates both encryption and decryption using AES. A block
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/AES/project.mk b/Examples/MAX32675/AES/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/AES/project.mk
+++ b/Examples/MAX32675/AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/AFE_DAC/.vscode/README.md b/Examples/MAX32675/AFE_DAC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/AFE_DAC/.vscode/README.md
+++ b/Examples/MAX32675/AFE_DAC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/AFE_DAC/.vscode/settings.json b/Examples/MAX32675/AFE_DAC/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/AFE_DAC/.vscode/settings.json
+++ b/Examples/MAX32675/AFE_DAC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/AFE_DAC/Makefile b/Examples/MAX32675/AFE_DAC/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/AFE_DAC/Makefile
+++ b/Examples/MAX32675/AFE_DAC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/AFE_DAC/README.md b/Examples/MAX32675/AFE_DAC/README.md
index 1b4941aae7..2dfaca10d6 100644
--- a/Examples/MAX32675/AFE_DAC/README.md
+++ b/Examples/MAX32675/AFE_DAC/README.md
@@ -7,7 +7,7 @@ This example configures the MAX32675 AFE 12-Bit DAC to output 1V.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/AFE_DAC/project.mk b/Examples/MAX32675/AFE_DAC/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/AFE_DAC/project.mk
+++ b/Examples/MAX32675/AFE_DAC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/ARM-DSP/README.md b/Examples/MAX32675/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32675/ARM-DSP/README.md
+++ b/Examples/MAX32675/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_bayes_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_bayes_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_convolution_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_convolution_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_fir_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_fir_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_matrix_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_matrix_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_svm_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_svm_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/settings.json
index 966ec9235f..e9ca859920 100755
--- a/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32675/ARM-DSP/arm_variance_example/Makefile
index 09fef9bebc..4a00723f57 100644
--- a/Examples/MAX32675/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32675/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX32675/ARM-DSP/arm_variance_example/project.mk
index bad225d2b4..df10f24f3b 100644
--- a/Examples/MAX32675/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX32675/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32675/CRC/.vscode/README.md b/Examples/MAX32675/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/CRC/.vscode/README.md
+++ b/Examples/MAX32675/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/CRC/.vscode/settings.json b/Examples/MAX32675/CRC/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/CRC/.vscode/settings.json
+++ b/Examples/MAX32675/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/CRC/Makefile b/Examples/MAX32675/CRC/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/CRC/Makefile
+++ b/Examples/MAX32675/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/CRC/README.md b/Examples/MAX32675/CRC/README.md
index 58276f29fd..3ead238934 100644
--- a/Examples/MAX32675/CRC/README.md
+++ b/Examples/MAX32675/CRC/README.md
@@ -7,7 +7,7 @@ This example demonstrates the various uses of the Flash Memory Controller. Initi
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/CRC/project.mk b/Examples/MAX32675/CRC/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/CRC/project.mk
+++ b/Examples/MAX32675/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/Coremark/.vscode/README.md b/Examples/MAX32675/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/Coremark/.vscode/README.md
+++ b/Examples/MAX32675/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/Coremark/.vscode/settings.json b/Examples/MAX32675/Coremark/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/Coremark/.vscode/settings.json
+++ b/Examples/MAX32675/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/Coremark/Makefile b/Examples/MAX32675/Coremark/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/Coremark/Makefile
+++ b/Examples/MAX32675/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/Coremark/README.md b/Examples/MAX32675/Coremark/README.md
index b847e9cb11..a93f9ef69a 100644
--- a/Examples/MAX32675/Coremark/README.md
+++ b/Examples/MAX32675/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/Coremark/project.mk b/Examples/MAX32675/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32675/Coremark/project.mk
+++ b/Examples/MAX32675/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/DMA/.vscode/README.md b/Examples/MAX32675/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/DMA/.vscode/README.md
+++ b/Examples/MAX32675/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/DMA/.vscode/settings.json b/Examples/MAX32675/DMA/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/DMA/.vscode/settings.json
+++ b/Examples/MAX32675/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/DMA/Makefile b/Examples/MAX32675/DMA/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/DMA/Makefile
+++ b/Examples/MAX32675/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/DMA/README.md b/Examples/MAX32675/DMA/README.md
index 1bc2f1c84f..24d678eb61 100644
--- a/Examples/MAX32675/DMA/README.md
+++ b/Examples/MAX32675/DMA/README.md
@@ -9,7 +9,7 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/DMA/project.mk b/Examples/MAX32675/DMA/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/DMA/project.mk
+++ b/Examples/MAX32675/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32675/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32675/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32675/EEPROM_Emulator/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32675/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/EEPROM_Emulator/Makefile b/Examples/MAX32675/EEPROM_Emulator/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32675/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/EEPROM_Emulator/README.md b/Examples/MAX32675/EEPROM_Emulator/README.md
index 2b1aace3e8..0250e65e3b 100644
--- a/Examples/MAX32675/EEPROM_Emulator/README.md
+++ b/Examples/MAX32675/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32675 to emulate a 32KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -48,7 +48,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/EEPROM_Emulator/project.mk b/Examples/MAX32675/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32675/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/Flash/.vscode/README.md b/Examples/MAX32675/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/Flash/.vscode/README.md
+++ b/Examples/MAX32675/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/Flash/.vscode/settings.json b/Examples/MAX32675/Flash/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/Flash/.vscode/settings.json
+++ b/Examples/MAX32675/Flash/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/Flash/Makefile b/Examples/MAX32675/Flash/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/Flash/Makefile
+++ b/Examples/MAX32675/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/Flash/README.md b/Examples/MAX32675/Flash/README.md
index 2aa903d2dd..0c7ea60a8d 100644
--- a/Examples/MAX32675/Flash/README.md
+++ b/Examples/MAX32675/Flash/README.md
@@ -21,7 +21,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -37,7 +37,7 @@ MAX32675EVKIT:
## Building and Running
-**See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
+**See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
## Expected Output
diff --git a/Examples/MAX32675/Flash/project.mk b/Examples/MAX32675/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/Flash/project.mk
+++ b/Examples/MAX32675/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/Flash_CLI/.vscode/README.md b/Examples/MAX32675/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32675/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/Flash_CLI/.vscode/settings.json b/Examples/MAX32675/Flash_CLI/.vscode/settings.json
index fa2a8badc9..036ab7079c 100755
--- a/Examples/MAX32675/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32675/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/Flash_CLI/Makefile b/Examples/MAX32675/Flash_CLI/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/Flash_CLI/Makefile
+++ b/Examples/MAX32675/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/Flash_CLI/README.md b/Examples/MAX32675/Flash_CLI/README.md
index db3e6e0eb5..38e897cd79 100644
--- a/Examples/MAX32675/Flash_CLI/README.md
+++ b/Examples/MAX32675/Flash_CLI/README.md
@@ -9,7 +9,7 @@ This example demonstates the CLI commands feature of FreeRTOS, various features
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/Flash_CLI/project.mk b/Examples/MAX32675/Flash_CLI/project.mk
index c666ca067b..43672c17ae 100644
--- a/Examples/MAX32675/Flash_CLI/project.mk
+++ b/Examples/MAX32675/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32675/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX32675/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX32675/FreeRTOSDemo/.vscode/settings.json
index fa2a8badc9..036ab7079c 100755
--- a/Examples/MAX32675/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX32675/FreeRTOSDemo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/FreeRTOSDemo/Makefile b/Examples/MAX32675/FreeRTOSDemo/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/FreeRTOSDemo/Makefile
+++ b/Examples/MAX32675/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/FreeRTOSDemo/README.md b/Examples/MAX32675/FreeRTOSDemo/README.md
index 4d3a90ff40..50803504aa 100644
--- a/Examples/MAX32675/FreeRTOSDemo/README.md
+++ b/Examples/MAX32675/FreeRTOSDemo/README.md
@@ -7,7 +7,7 @@ A basic getting started application for FreeRTOS.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/FreeRTOSDemo/project.mk b/Examples/MAX32675/FreeRTOSDemo/project.mk
index c666ca067b..43672c17ae 100644
--- a/Examples/MAX32675/FreeRTOSDemo/project.mk
+++ b/Examples/MAX32675/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/GPIO/.vscode/README.md b/Examples/MAX32675/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/GPIO/.vscode/README.md
+++ b/Examples/MAX32675/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/GPIO/.vscode/settings.json b/Examples/MAX32675/GPIO/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/GPIO/.vscode/settings.json
+++ b/Examples/MAX32675/GPIO/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/GPIO/Makefile b/Examples/MAX32675/GPIO/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/GPIO/Makefile
+++ b/Examples/MAX32675/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/GPIO/README.md b/Examples/MAX32675/GPIO/README.md
index 01a7a76efb..83e936675e 100644
--- a/Examples/MAX32675/GPIO/README.md
+++ b/Examples/MAX32675/GPIO/README.md
@@ -11,7 +11,7 @@ Please check the board.c file in ${MSDKPath}\Libraries\Boards\MAX32675\${BoardNa
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/GPIO/project.mk b/Examples/MAX32675/GPIO/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/GPIO/project.mk
+++ b/Examples/MAX32675/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/HART_UART/.vscode/README.md b/Examples/MAX32675/HART_UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/HART_UART/.vscode/README.md
+++ b/Examples/MAX32675/HART_UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/HART_UART/.vscode/settings.json b/Examples/MAX32675/HART_UART/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/HART_UART/.vscode/settings.json
+++ b/Examples/MAX32675/HART_UART/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/HART_UART/Makefile b/Examples/MAX32675/HART_UART/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/HART_UART/Makefile
+++ b/Examples/MAX32675/HART_UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/HART_UART/README.md b/Examples/MAX32675/HART_UART/README.md
index c79cd906f7..bdb68da397 100644
--- a/Examples/MAX32675/HART_UART/README.md
+++ b/Examples/MAX32675/HART_UART/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/HART_UART/project.mk b/Examples/MAX32675/HART_UART/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/HART_UART/project.mk
+++ b/Examples/MAX32675/HART_UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/Hello_World/.vscode/README.md b/Examples/MAX32675/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/Hello_World/.vscode/README.md
+++ b/Examples/MAX32675/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/Hello_World/.vscode/settings.json b/Examples/MAX32675/Hello_World/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32675/Hello_World/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/Hello_World/Makefile b/Examples/MAX32675/Hello_World/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/Hello_World/Makefile
+++ b/Examples/MAX32675/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/Hello_World/README.md b/Examples/MAX32675/Hello_World/README.md
index 03141df7c8..9a7b4eb932 100644
--- a/Examples/MAX32675/Hello_World/README.md
+++ b/Examples/MAX32675/Hello_World/README.md
@@ -9,7 +9,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/Hello_World/project.mk b/Examples/MAX32675/Hello_World/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/Hello_World/project.mk
+++ b/Examples/MAX32675/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32675/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32675/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32675/Hello_World_Cpp/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32675/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/Hello_World_Cpp/Makefile b/Examples/MAX32675/Hello_World_Cpp/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32675/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/Hello_World_Cpp/README.md b/Examples/MAX32675/Hello_World_Cpp/README.md
index e0caa702dc..7777f0b434 100644
--- a/Examples/MAX32675/Hello_World_Cpp/README.md
+++ b/Examples/MAX32675/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/Hello_World_Cpp/project.mk b/Examples/MAX32675/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32675/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32675/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32675/I2C/.vscode/README.md b/Examples/MAX32675/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/I2C/.vscode/README.md
+++ b/Examples/MAX32675/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/I2C/.vscode/settings.json b/Examples/MAX32675/I2C/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/I2C/.vscode/settings.json
+++ b/Examples/MAX32675/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/I2C/Makefile b/Examples/MAX32675/I2C/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/I2C/Makefile
+++ b/Examples/MAX32675/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/I2C/README.md b/Examples/MAX32675/I2C/README.md
index 51e19eed72..ad669c07f2 100644
--- a/Examples/MAX32675/I2C/README.md
+++ b/Examples/MAX32675/I2C/README.md
@@ -7,7 +7,7 @@ This example uses the I2C Master to read/write from/to the I2C Slave.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/I2C/project.mk b/Examples/MAX32675/I2C/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/I2C/project.mk
+++ b/Examples/MAX32675/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/I2C_MNGR/.vscode/README.md b/Examples/MAX32675/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32675/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/I2C_MNGR/.vscode/settings.json b/Examples/MAX32675/I2C_MNGR/.vscode/settings.json
index 563e9e1578..b4182f55be 100755
--- a/Examples/MAX32675/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32675/I2C_MNGR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/I2C_MNGR/Makefile b/Examples/MAX32675/I2C_MNGR/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/I2C_MNGR/Makefile
+++ b/Examples/MAX32675/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/I2C_MNGR/README.md b/Examples/MAX32675/I2C_MNGR/README.md
index 87ff851022..31dd62827a 100644
--- a/Examples/MAX32675/I2C_MNGR/README.md
+++ b/Examples/MAX32675/I2C_MNGR/README.md
@@ -11,7 +11,7 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/I2C_MNGR/project.mk b/Examples/MAX32675/I2C_MNGR/project.mk
index 315928bc48..90e76c6363 100644
--- a/Examples/MAX32675/I2C_MNGR/project.mk
+++ b/Examples/MAX32675/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/I2C_SCAN/.vscode/README.md b/Examples/MAX32675/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32675/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/I2C_SCAN/.vscode/settings.json b/Examples/MAX32675/I2C_SCAN/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32675/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/I2C_SCAN/Makefile b/Examples/MAX32675/I2C_SCAN/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/I2C_SCAN/Makefile
+++ b/Examples/MAX32675/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/I2C_SCAN/README.md b/Examples/MAX32675/I2C_SCAN/README.md
index 625f2c7d2d..b634b08fc5 100644
--- a/Examples/MAX32675/I2C_SCAN/README.md
+++ b/Examples/MAX32675/I2C_SCAN/README.md
@@ -6,7 +6,7 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/I2C_SCAN/project.mk b/Examples/MAX32675/I2C_SCAN/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/I2C_SCAN/project.mk
+++ b/Examples/MAX32675/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/I2C_Sensor/.vscode/README.md b/Examples/MAX32675/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32675/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/I2C_Sensor/.vscode/settings.json b/Examples/MAX32675/I2C_Sensor/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32675/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/I2C_Sensor/Makefile b/Examples/MAX32675/I2C_Sensor/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/I2C_Sensor/Makefile
+++ b/Examples/MAX32675/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/I2C_Sensor/README.md b/Examples/MAX32675/I2C_Sensor/README.md
index 3882237880..1006138f74 100644
--- a/Examples/MAX32675/I2C_Sensor/README.md
+++ b/Examples/MAX32675/I2C_Sensor/README.md
@@ -9,7 +9,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/I2C_Sensor/project.mk b/Examples/MAX32675/I2C_Sensor/project.mk
index a53675ddcf..6a77af6337 100644
--- a/Examples/MAX32675/I2C_Sensor/project.mk
+++ b/Examples/MAX32675/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/I2S/.vscode/README.md b/Examples/MAX32675/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/I2S/.vscode/README.md
+++ b/Examples/MAX32675/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/I2S/.vscode/settings.json b/Examples/MAX32675/I2S/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/I2S/.vscode/settings.json
+++ b/Examples/MAX32675/I2S/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/I2S/Makefile b/Examples/MAX32675/I2S/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/I2S/Makefile
+++ b/Examples/MAX32675/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/I2S/README.md b/Examples/MAX32675/I2S/README.md
index f4b2c645c2..559fb83ec9 100644
--- a/Examples/MAX32675/I2S/README.md
+++ b/Examples/MAX32675/I2S/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/I2S/project.mk b/Examples/MAX32675/I2S/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/I2S/project.mk
+++ b/Examples/MAX32675/I2S/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/ICC/.vscode/README.md b/Examples/MAX32675/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/ICC/.vscode/README.md
+++ b/Examples/MAX32675/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/ICC/.vscode/settings.json b/Examples/MAX32675/ICC/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/ICC/.vscode/settings.json
+++ b/Examples/MAX32675/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/ICC/Makefile b/Examples/MAX32675/ICC/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/ICC/Makefile
+++ b/Examples/MAX32675/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/ICC/README.md b/Examples/MAX32675/ICC/README.md
index 3fa3a0e67c..b6ad92db4f 100644
--- a/Examples/MAX32675/ICC/README.md
+++ b/Examples/MAX32675/ICC/README.md
@@ -12,7 +12,7 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/ICC/project.mk b/Examples/MAX32675/ICC/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/ICC/project.mk
+++ b/Examples/MAX32675/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/LP/.vscode/README.md b/Examples/MAX32675/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/LP/.vscode/README.md
+++ b/Examples/MAX32675/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/LP/.vscode/settings.json b/Examples/MAX32675/LP/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/LP/.vscode/settings.json
+++ b/Examples/MAX32675/LP/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/LP/Makefile b/Examples/MAX32675/LP/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/LP/Makefile
+++ b/Examples/MAX32675/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/LP/README.md b/Examples/MAX32675/LP/README.md
index 4a464b081f..ad8e8305e8 100644
--- a/Examples/MAX32675/LP/README.md
+++ b/Examples/MAX32675/LP/README.md
@@ -9,7 +9,7 @@ To move to the next power state push button 0 (SW1).
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/LP/project.mk b/Examples/MAX32675/LP/project.mk
index 08d2d581f7..254d35d060 100644
--- a/Examples/MAX32675/LP/project.mk
+++ b/Examples/MAX32675/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/Library_Generate/.vscode/README.md b/Examples/MAX32675/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32675/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32675/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32675/Library_Generate/Makefile b/Examples/MAX32675/Library_Generate/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/Library_Generate/Makefile
+++ b/Examples/MAX32675/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/Library_Generate/README.md b/Examples/MAX32675/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32675/Library_Generate/README.md
+++ b/Examples/MAX32675/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/Library_Generate/project.mk b/Examples/MAX32675/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32675/Library_Generate/project.mk
+++ b/Examples/MAX32675/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/Library_Use/.vscode/README.md b/Examples/MAX32675/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/Library_Use/.vscode/README.md
+++ b/Examples/MAX32675/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/Library_Use/.vscode/settings.json b/Examples/MAX32675/Library_Use/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32675/Library_Use/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/Library_Use/Makefile b/Examples/MAX32675/Library_Use/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/Library_Use/Makefile
+++ b/Examples/MAX32675/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/Library_Use/README.md b/Examples/MAX32675/Library_Use/README.md
index a145adf789..11cbe86219 100644
--- a/Examples/MAX32675/Library_Use/README.md
+++ b/Examples/MAX32675/Library_Use/README.md
@@ -9,11 +9,11 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-This example supports all available MAX32675 evaluation platforms but comes _pre-configured_ for the MAX32675EVKIT by default. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
+This example supports all available MAX32675 evaluation platforms but comes _pre-configured_ for the MAX32675EVKIT by default. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
## Required Connections
diff --git a/Examples/MAX32675/Library_Use/project.mk b/Examples/MAX32675/Library_Use/project.mk
index 972fa6942d..697d6809f8 100644
--- a/Examples/MAX32675/Library_Use/project.mk
+++ b/Examples/MAX32675/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/SPI/.vscode/README.md b/Examples/MAX32675/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/SPI/.vscode/README.md
+++ b/Examples/MAX32675/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/SPI/.vscode/settings.json b/Examples/MAX32675/SPI/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/SPI/.vscode/settings.json
+++ b/Examples/MAX32675/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/SPI/Makefile b/Examples/MAX32675/SPI/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/SPI/Makefile
+++ b/Examples/MAX32675/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/SPI/README.md b/Examples/MAX32675/SPI/README.md
index b39720cb78..ea61d9b180 100644
--- a/Examples/MAX32675/SPI/README.md
+++ b/Examples/MAX32675/SPI/README.md
@@ -11,7 +11,7 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/SPI/project.mk b/Examples/MAX32675/SPI/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/SPI/project.mk
+++ b/Examples/MAX32675/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/TMR/.vscode/README.md b/Examples/MAX32675/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/TMR/.vscode/README.md
+++ b/Examples/MAX32675/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/TMR/.vscode/settings.json b/Examples/MAX32675/TMR/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/TMR/.vscode/settings.json
+++ b/Examples/MAX32675/TMR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/TMR/Makefile b/Examples/MAX32675/TMR/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/TMR/Makefile
+++ b/Examples/MAX32675/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/TMR/README.md b/Examples/MAX32675/TMR/README.md
index e7db367633..c022edb0a0 100644
--- a/Examples/MAX32675/TMR/README.md
+++ b/Examples/MAX32675/TMR/README.md
@@ -15,7 +15,7 @@ Push PB1 to start the timers.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/TMR/project.mk b/Examples/MAX32675/TMR/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/TMR/project.mk
+++ b/Examples/MAX32675/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/TRNG/.vscode/README.md b/Examples/MAX32675/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/TRNG/.vscode/README.md
+++ b/Examples/MAX32675/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/TRNG/.vscode/settings.json b/Examples/MAX32675/TRNG/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/TRNG/.vscode/settings.json
+++ b/Examples/MAX32675/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/TRNG/Makefile b/Examples/MAX32675/TRNG/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/TRNG/Makefile
+++ b/Examples/MAX32675/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/TRNG/README.md b/Examples/MAX32675/TRNG/README.md
index bb7b3678f0..ccd22c4b0b 100644
--- a/Examples/MAX32675/TRNG/README.md
+++ b/Examples/MAX32675/TRNG/README.md
@@ -7,7 +7,7 @@ The true random number generator (TRNG) hardware is exercised in this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/TRNG/project.mk b/Examples/MAX32675/TRNG/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/TRNG/project.mk
+++ b/Examples/MAX32675/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/UART/.vscode/README.md b/Examples/MAX32675/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/UART/.vscode/README.md
+++ b/Examples/MAX32675/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/UART/.vscode/settings.json b/Examples/MAX32675/UART/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/UART/.vscode/settings.json
+++ b/Examples/MAX32675/UART/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/UART/Makefile b/Examples/MAX32675/UART/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/UART/Makefile
+++ b/Examples/MAX32675/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/UART/README.md b/Examples/MAX32675/UART/README.md
index e539353351..fca249fbf7 100644
--- a/Examples/MAX32675/UART/README.md
+++ b/Examples/MAX32675/UART/README.md
@@ -7,7 +7,7 @@ This application uses two serial ports to send and receive data. One serial por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/UART/project.mk b/Examples/MAX32675/UART/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/UART/project.mk
+++ b/Examples/MAX32675/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/Watchdog/.vscode/README.md b/Examples/MAX32675/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/Watchdog/.vscode/README.md
+++ b/Examples/MAX32675/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/Watchdog/.vscode/settings.json b/Examples/MAX32675/Watchdog/.vscode/settings.json
index 23fa5b114f..f51e43ba86 100755
--- a/Examples/MAX32675/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32675/Watchdog/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/Watchdog/Makefile b/Examples/MAX32675/Watchdog/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/Watchdog/Makefile
+++ b/Examples/MAX32675/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/Watchdog/README.md b/Examples/MAX32675/Watchdog/README.md
index 02b5f30667..bbb32c9d1f 100644
--- a/Examples/MAX32675/Watchdog/README.md
+++ b/Examples/MAX32675/Watchdog/README.md
@@ -13,7 +13,7 @@ Please check the board.c file in ${MSDKPath}\Libraries\Boards\MAX32675\${BoardNa
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32675/Watchdog/project.mk b/Examples/MAX32675/Watchdog/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32675/Watchdog/project.mk
+++ b/Examples/MAX32675/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32675/WearLeveling/.vscode/README.md b/Examples/MAX32675/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32675/WearLeveling/.vscode/README.md
+++ b/Examples/MAX32675/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32675/WearLeveling/.vscode/settings.json b/Examples/MAX32675/WearLeveling/.vscode/settings.json
index 97421fceaa..66a4817bea 100755
--- a/Examples/MAX32675/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX32675/WearLeveling/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32675/WearLeveling/Makefile b/Examples/MAX32675/WearLeveling/Makefile
index af2e7a4f34..1cd38ef018 100644
--- a/Examples/MAX32675/WearLeveling/Makefile
+++ b/Examples/MAX32675/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32675/WearLeveling/README.md b/Examples/MAX32675/WearLeveling/README.md
index 524ab95fea..76a0531d4c 100644
--- a/Examples/MAX32675/WearLeveling/README.md
+++ b/Examples/MAX32675/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32675EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32675EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32675/WearLeveling/project.mk b/Examples/MAX32675/WearLeveling/project.mk
index 16e450a8b6..8b1313bcf1 100644
--- a/Examples/MAX32675/WearLeveling/project.mk
+++ b/Examples/MAX32675/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32680/ADC/.vscode/README.md b/Examples/MAX32680/ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ADC/.vscode/README.md
+++ b/Examples/MAX32680/ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ADC/.vscode/settings.json b/Examples/MAX32680/ADC/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/ADC/.vscode/settings.json
+++ b/Examples/MAX32680/ADC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ADC/Makefile b/Examples/MAX32680/ADC/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/ADC/Makefile
+++ b/Examples/MAX32680/ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ADC/README.md b/Examples/MAX32680/ADC/README.md
index 634ce7098c..631d20b970 100644
--- a/Examples/MAX32680/ADC/README.md
+++ b/Examples/MAX32680/ADC/README.md
@@ -11,7 +11,7 @@ Any reading that exceeds the full-scale value of the ADC will have an '*' append
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/ADC/project.mk b/Examples/MAX32680/ADC/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/ADC/project.mk
+++ b/Examples/MAX32680/ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/AES/.vscode/README.md b/Examples/MAX32680/AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/AES/.vscode/README.md
+++ b/Examples/MAX32680/AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/AES/.vscode/settings.json b/Examples/MAX32680/AES/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/AES/.vscode/settings.json
+++ b/Examples/MAX32680/AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/AES/Makefile b/Examples/MAX32680/AES/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/AES/Makefile
+++ b/Examples/MAX32680/AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/AES/README.md b/Examples/MAX32680/AES/README.md
index 8cf07a3a68..84b2738c37 100644
--- a/Examples/MAX32680/AES/README.md
+++ b/Examples/MAX32680/AES/README.md
@@ -8,7 +8,7 @@ This application demonstrates both encryption and decryption using AES. A block
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/AES/project.mk b/Examples/MAX32680/AES/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/AES/project.mk
+++ b/Examples/MAX32680/AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/AFE_ADC/.vscode/README.md b/Examples/MAX32680/AFE_ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/AFE_ADC/.vscode/README.md
+++ b/Examples/MAX32680/AFE_ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/AFE_ADC/.vscode/settings.json b/Examples/MAX32680/AFE_ADC/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/AFE_ADC/.vscode/settings.json
+++ b/Examples/MAX32680/AFE_ADC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/AFE_ADC/Makefile b/Examples/MAX32680/AFE_ADC/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/AFE_ADC/Makefile
+++ b/Examples/MAX32680/AFE_ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/AFE_ADC/README.md b/Examples/MAX32680/AFE_ADC/README.md
index 0015774db9..f9f9e8519a 100644
--- a/Examples/MAX32680/AFE_ADC/README.md
+++ b/Examples/MAX32680/AFE_ADC/README.md
@@ -9,7 +9,7 @@ Each of the ADC modules are set to sample differentially between ADC channels AI
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/AFE_ADC/project.mk b/Examples/MAX32680/AFE_ADC/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/AFE_ADC/project.mk
+++ b/Examples/MAX32680/AFE_ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/ARM-DSP/README.md b/Examples/MAX32680/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32680/ARM-DSP/README.md
+++ b/Examples/MAX32680/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_bayes_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_class_marks_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32680/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32680/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32680/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_convolution_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_fir_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_matrix_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_svm_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/settings.json
index 853c5fe24a..56faa5a2af 100755
--- a/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32680/ARM-DSP/arm_variance_example/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32680/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/README.md b/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/README.md
+++ b/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/settings.json b/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/settings.json
+++ b/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Bluetooth/BLE4_ctr/Makefile b/Examples/MAX32680/Bluetooth/BLE4_ctr/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/Bluetooth/BLE4_ctr/Makefile
+++ b/Examples/MAX32680/Bluetooth/BLE4_ctr/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Bluetooth/BLE4_ctr/README.md b/Examples/MAX32680/Bluetooth/BLE4_ctr/README.md
index e04a2896f8..daabbd9b64 100644
--- a/Examples/MAX32680/Bluetooth/BLE4_ctr/README.md
+++ b/Examples/MAX32680/Bluetooth/BLE4_ctr/README.md
@@ -95,7 +95,7 @@ lctrSlvAdvExecuteSm: state=0, event=0
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Bluetooth/BLE4_ctr/project.mk b/Examples/MAX32680/Bluetooth/BLE4_ctr/project.mk
index c9b91e4af3..bb54c1ea7c 100644
--- a/Examples/MAX32680/Bluetooth/BLE4_ctr/project.mk
+++ b/Examples/MAX32680/Bluetooth/BLE4_ctr/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/README.md b/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/README.md
+++ b/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/settings.json b/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/settings.json
+++ b/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Bluetooth/BLE_dats/Makefile b/Examples/MAX32680/Bluetooth/BLE_dats/Makefile
index ec8b215fac..eae8ffba1c 100644
--- a/Examples/MAX32680/Bluetooth/BLE_dats/Makefile
+++ b/Examples/MAX32680/Bluetooth/BLE_dats/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Bluetooth/BLE_dats/README.md b/Examples/MAX32680/Bluetooth/BLE_dats/README.md
index 7d0abdaeef..0f990ee0d3 100644
--- a/Examples/MAX32680/Bluetooth/BLE_dats/README.md
+++ b/Examples/MAX32680/Bluetooth/BLE_dats/README.md
@@ -191,7 +191,7 @@ __extra long__ press is greater than 1000 ms
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Bluetooth/BLE_dats/project.mk b/Examples/MAX32680/Bluetooth/BLE_dats/project.mk
index c9b91e4af3..bb54c1ea7c 100644
--- a/Examples/MAX32680/Bluetooth/BLE_dats/project.mk
+++ b/Examples/MAX32680/Bluetooth/BLE_dats/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/CRC/.vscode/README.md b/Examples/MAX32680/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/CRC/.vscode/README.md
+++ b/Examples/MAX32680/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/CRC/.vscode/settings.json b/Examples/MAX32680/CRC/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/CRC/.vscode/settings.json
+++ b/Examples/MAX32680/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/CRC/Makefile b/Examples/MAX32680/CRC/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/CRC/Makefile
+++ b/Examples/MAX32680/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/CRC/README.md b/Examples/MAX32680/CRC/README.md
index e677a5ef56..80c0c20831 100644
--- a/Examples/MAX32680/CRC/README.md
+++ b/Examples/MAX32680/CRC/README.md
@@ -7,7 +7,7 @@ This example demonstrates the use of the HW CRC calculator. The example first g
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/CRC/project.mk b/Examples/MAX32680/CRC/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/CRC/project.mk
+++ b/Examples/MAX32680/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Coremark/.vscode/README.md b/Examples/MAX32680/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Coremark/.vscode/README.md
+++ b/Examples/MAX32680/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Coremark/.vscode/settings.json b/Examples/MAX32680/Coremark/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/Coremark/.vscode/settings.json
+++ b/Examples/MAX32680/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Coremark/Makefile b/Examples/MAX32680/Coremark/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/Coremark/Makefile
+++ b/Examples/MAX32680/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Coremark/README.md b/Examples/MAX32680/Coremark/README.md
index e45290a759..6c4b7c6302 100644
--- a/Examples/MAX32680/Coremark/README.md
+++ b/Examples/MAX32680/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Coremark/project.mk b/Examples/MAX32680/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32680/Coremark/project.mk
+++ b/Examples/MAX32680/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/DMA/.vscode/README.md b/Examples/MAX32680/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/DMA/.vscode/README.md
+++ b/Examples/MAX32680/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/DMA/.vscode/settings.json b/Examples/MAX32680/DMA/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/DMA/.vscode/settings.json
+++ b/Examples/MAX32680/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/DMA/Makefile b/Examples/MAX32680/DMA/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/DMA/Makefile
+++ b/Examples/MAX32680/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/DMA/README.md b/Examples/MAX32680/DMA/README.md
index dd4c153dcb..f34d7ce72e 100644
--- a/Examples/MAX32680/DMA/README.md
+++ b/Examples/MAX32680/DMA/README.md
@@ -9,7 +9,7 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/DMA/project.mk b/Examples/MAX32680/DMA/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/DMA/project.mk
+++ b/Examples/MAX32680/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32680/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32680/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32680/EEPROM_Emulator/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32680/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/EEPROM_Emulator/Makefile b/Examples/MAX32680/EEPROM_Emulator/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32680/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/EEPROM_Emulator/README.md b/Examples/MAX32680/EEPROM_Emulator/README.md
index 913a12cac8..8beea7fe5e 100644
--- a/Examples/MAX32680/EEPROM_Emulator/README.md
+++ b/Examples/MAX32680/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32680 to emulate a 32KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -48,7 +48,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/EEPROM_Emulator/project.mk b/Examples/MAX32680/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32680/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32680/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Flash/.vscode/README.md b/Examples/MAX32680/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Flash/.vscode/README.md
+++ b/Examples/MAX32680/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Flash/.vscode/settings.json b/Examples/MAX32680/Flash/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/Flash/.vscode/settings.json
+++ b/Examples/MAX32680/Flash/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Flash/Makefile b/Examples/MAX32680/Flash/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/Flash/Makefile
+++ b/Examples/MAX32680/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Flash/README.md b/Examples/MAX32680/Flash/README.md
index 33de4d7de1..0349ed59aa 100644
--- a/Examples/MAX32680/Flash/README.md
+++ b/Examples/MAX32680/Flash/README.md
@@ -21,7 +21,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
@@ -37,7 +37,7 @@ MAX32680EVKIT:
## Building and Running
-**See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
+**See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)** for detailed instructions on building and running example projects from supported development environments.
## Expected Output
diff --git a/Examples/MAX32680/Flash/project.mk b/Examples/MAX32680/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32680/Flash/project.mk
+++ b/Examples/MAX32680/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Flash_CLI/.vscode/README.md b/Examples/MAX32680/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32680/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Flash_CLI/.vscode/settings.json b/Examples/MAX32680/Flash_CLI/.vscode/settings.json
index 65387d57cc..ce4d58253a 100755
--- a/Examples/MAX32680/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32680/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Flash_CLI/Makefile b/Examples/MAX32680/Flash_CLI/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/Flash_CLI/Makefile
+++ b/Examples/MAX32680/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Flash_CLI/README.md b/Examples/MAX32680/Flash_CLI/README.md
index 3a356efc3c..db47c5aff2 100644
--- a/Examples/MAX32680/Flash_CLI/README.md
+++ b/Examples/MAX32680/Flash_CLI/README.md
@@ -9,7 +9,7 @@ This example demonstates the CLI commands feature of FreeRTOS, various features
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Flash_CLI/project.mk b/Examples/MAX32680/Flash_CLI/project.mk
index da954ce94f..6cad518659 100644
--- a/Examples/MAX32680/Flash_CLI/project.mk
+++ b/Examples/MAX32680/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32680/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX32680/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX32680/FreeRTOSDemo/.vscode/settings.json
index 65387d57cc..ce4d58253a 100755
--- a/Examples/MAX32680/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX32680/FreeRTOSDemo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/FreeRTOSDemo/Makefile b/Examples/MAX32680/FreeRTOSDemo/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/FreeRTOSDemo/Makefile
+++ b/Examples/MAX32680/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/FreeRTOSDemo/README.md b/Examples/MAX32680/FreeRTOSDemo/README.md
index 739b55cee6..2e000c82e6 100644
--- a/Examples/MAX32680/FreeRTOSDemo/README.md
+++ b/Examples/MAX32680/FreeRTOSDemo/README.md
@@ -7,7 +7,7 @@ A basic getting started application for FreeRTOS.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/FreeRTOSDemo/project.mk b/Examples/MAX32680/FreeRTOSDemo/project.mk
index da954ce94f..6cad518659 100644
--- a/Examples/MAX32680/FreeRTOSDemo/project.mk
+++ b/Examples/MAX32680/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/GPIO/.vscode/README.md b/Examples/MAX32680/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/GPIO/.vscode/README.md
+++ b/Examples/MAX32680/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/GPIO/.vscode/settings.json b/Examples/MAX32680/GPIO/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/GPIO/.vscode/settings.json
+++ b/Examples/MAX32680/GPIO/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/GPIO/Makefile b/Examples/MAX32680/GPIO/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/GPIO/Makefile
+++ b/Examples/MAX32680/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/GPIO/README.md b/Examples/MAX32680/GPIO/README.md
index 0ab6063504..46f08f28c7 100644
--- a/Examples/MAX32680/GPIO/README.md
+++ b/Examples/MAX32680/GPIO/README.md
@@ -21,7 +21,7 @@ On the Featherboard:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/GPIO/project.mk b/Examples/MAX32680/GPIO/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/GPIO/project.mk
+++ b/Examples/MAX32680/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/HART_UART/.vscode/README.md b/Examples/MAX32680/HART_UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/HART_UART/.vscode/README.md
+++ b/Examples/MAX32680/HART_UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/HART_UART/.vscode/settings.json b/Examples/MAX32680/HART_UART/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/HART_UART/.vscode/settings.json
+++ b/Examples/MAX32680/HART_UART/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/HART_UART/Makefile b/Examples/MAX32680/HART_UART/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/HART_UART/Makefile
+++ b/Examples/MAX32680/HART_UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/HART_UART/README.md b/Examples/MAX32680/HART_UART/README.md
index 94aacd891f..aabdd5d1ca 100644
--- a/Examples/MAX32680/HART_UART/README.md
+++ b/Examples/MAX32680/HART_UART/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/HART_UART/project.mk b/Examples/MAX32680/HART_UART/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/HART_UART/project.mk
+++ b/Examples/MAX32680/HART_UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Hello_World-riscv/.vscode/README.md b/Examples/MAX32680/Hello_World-riscv/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Hello_World-riscv/.vscode/README.md
+++ b/Examples/MAX32680/Hello_World-riscv/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Hello_World-riscv/.vscode/settings.json b/Examples/MAX32680/Hello_World-riscv/.vscode/settings.json
index 2e8f8b50e4..f7326604eb 100755
--- a/Examples/MAX32680/Hello_World-riscv/.vscode/settings.json
+++ b/Examples/MAX32680/Hello_World-riscv/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Hello_World-riscv/README.md b/Examples/MAX32680/Hello_World-riscv/README.md
index be6335b3e9..54c6d595dd 100644
--- a/Examples/MAX32680/Hello_World-riscv/README.md
+++ b/Examples/MAX32680/Hello_World-riscv/README.md
@@ -11,7 +11,7 @@ The ARM core initializes the RISC-V core before relinquishing control of executi
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Hello_World/.vscode/README.md b/Examples/MAX32680/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Hello_World/.vscode/README.md
+++ b/Examples/MAX32680/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Hello_World/.vscode/settings.json b/Examples/MAX32680/Hello_World/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32680/Hello_World/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Hello_World/Makefile b/Examples/MAX32680/Hello_World/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/Hello_World/Makefile
+++ b/Examples/MAX32680/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Hello_World/README.md b/Examples/MAX32680/Hello_World/README.md
index 0517142faa..fb8db054f1 100644
--- a/Examples/MAX32680/Hello_World/README.md
+++ b/Examples/MAX32680/Hello_World/README.md
@@ -9,7 +9,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Hello_World/project.mk b/Examples/MAX32680/Hello_World/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/Hello_World/project.mk
+++ b/Examples/MAX32680/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32680/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32680/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32680/Hello_World_Cpp/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32680/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Hello_World_Cpp/Makefile b/Examples/MAX32680/Hello_World_Cpp/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32680/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Hello_World_Cpp/README.md b/Examples/MAX32680/Hello_World_Cpp/README.md
index 1dbc3c2672..3002815b42 100644
--- a/Examples/MAX32680/Hello_World_Cpp/README.md
+++ b/Examples/MAX32680/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Hello_World_Cpp/project.mk b/Examples/MAX32680/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32680/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32680/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32680/I2C/.vscode/README.md b/Examples/MAX32680/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/I2C/.vscode/README.md
+++ b/Examples/MAX32680/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/I2C/.vscode/settings.json b/Examples/MAX32680/I2C/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/I2C/.vscode/settings.json
+++ b/Examples/MAX32680/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/I2C/Makefile b/Examples/MAX32680/I2C/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/I2C/Makefile
+++ b/Examples/MAX32680/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/I2C/README.md b/Examples/MAX32680/I2C/README.md
index 4f6bea53b5..dde4548686 100644
--- a/Examples/MAX32680/I2C/README.md
+++ b/Examples/MAX32680/I2C/README.md
@@ -7,7 +7,7 @@ This example uses the I2C Master to read/write from/to the I2C Slave.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/I2C/project.mk b/Examples/MAX32680/I2C/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/I2C/project.mk
+++ b/Examples/MAX32680/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/I2C_MNGR/.vscode/README.md b/Examples/MAX32680/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32680/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/I2C_MNGR/.vscode/settings.json b/Examples/MAX32680/I2C_MNGR/.vscode/settings.json
index 9ab0402498..91336cd5b6 100755
--- a/Examples/MAX32680/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32680/I2C_MNGR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/I2C_MNGR/Makefile b/Examples/MAX32680/I2C_MNGR/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/I2C_MNGR/Makefile
+++ b/Examples/MAX32680/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/I2C_MNGR/README.md b/Examples/MAX32680/I2C_MNGR/README.md
index a2991607ad..53f7490b64 100644
--- a/Examples/MAX32680/I2C_MNGR/README.md
+++ b/Examples/MAX32680/I2C_MNGR/README.md
@@ -11,7 +11,7 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/I2C_MNGR/project.mk b/Examples/MAX32680/I2C_MNGR/project.mk
index 315928bc48..90e76c6363 100644
--- a/Examples/MAX32680/I2C_MNGR/project.mk
+++ b/Examples/MAX32680/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/I2C_SCAN/.vscode/README.md b/Examples/MAX32680/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32680/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/I2C_SCAN/.vscode/settings.json b/Examples/MAX32680/I2C_SCAN/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32680/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/I2C_SCAN/Makefile b/Examples/MAX32680/I2C_SCAN/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/I2C_SCAN/Makefile
+++ b/Examples/MAX32680/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/I2C_SCAN/README.md b/Examples/MAX32680/I2C_SCAN/README.md
index ba951d4a29..ffab4ccb0a 100644
--- a/Examples/MAX32680/I2C_SCAN/README.md
+++ b/Examples/MAX32680/I2C_SCAN/README.md
@@ -6,7 +6,7 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/I2C_SCAN/project.mk b/Examples/MAX32680/I2C_SCAN/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/I2C_SCAN/project.mk
+++ b/Examples/MAX32680/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/I2C_Sensor/.vscode/README.md b/Examples/MAX32680/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32680/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/I2C_Sensor/.vscode/settings.json b/Examples/MAX32680/I2C_Sensor/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32680/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/I2C_Sensor/Makefile b/Examples/MAX32680/I2C_Sensor/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/I2C_Sensor/Makefile
+++ b/Examples/MAX32680/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/I2C_Sensor/README.md b/Examples/MAX32680/I2C_Sensor/README.md
index 1c0f51daf9..8874832bbe 100644
--- a/Examples/MAX32680/I2C_Sensor/README.md
+++ b/Examples/MAX32680/I2C_Sensor/README.md
@@ -9,7 +9,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/I2C_Sensor/project.mk b/Examples/MAX32680/I2C_Sensor/project.mk
index a53675ddcf..6a77af6337 100644
--- a/Examples/MAX32680/I2C_Sensor/project.mk
+++ b/Examples/MAX32680/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/I2S/.vscode/README.md b/Examples/MAX32680/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/I2S/.vscode/README.md
+++ b/Examples/MAX32680/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/I2S/.vscode/settings.json b/Examples/MAX32680/I2S/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/I2S/.vscode/settings.json
+++ b/Examples/MAX32680/I2S/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/I2S/Makefile b/Examples/MAX32680/I2S/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/I2S/Makefile
+++ b/Examples/MAX32680/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/I2S/README.md b/Examples/MAX32680/I2S/README.md
index 2acedf274e..3c6c768f83 100644
--- a/Examples/MAX32680/I2S/README.md
+++ b/Examples/MAX32680/I2S/README.md
@@ -7,7 +7,7 @@ This example demonstrates an I2S transmission. The I2S signals can be viewed on
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/I2S/project.mk b/Examples/MAX32680/I2S/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/I2S/project.mk
+++ b/Examples/MAX32680/I2S/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/ICC/.vscode/README.md b/Examples/MAX32680/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/ICC/.vscode/README.md
+++ b/Examples/MAX32680/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/ICC/.vscode/settings.json b/Examples/MAX32680/ICC/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/ICC/.vscode/settings.json
+++ b/Examples/MAX32680/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/ICC/Makefile b/Examples/MAX32680/ICC/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/ICC/Makefile
+++ b/Examples/MAX32680/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/ICC/README.md b/Examples/MAX32680/ICC/README.md
index 1b9ac79120..3e71f21ed3 100644
--- a/Examples/MAX32680/ICC/README.md
+++ b/Examples/MAX32680/ICC/README.md
@@ -12,7 +12,7 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/ICC/project.mk b/Examples/MAX32680/ICC/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/ICC/project.mk
+++ b/Examples/MAX32680/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/LP/.vscode/README.md b/Examples/MAX32680/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/LP/.vscode/README.md
+++ b/Examples/MAX32680/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/LP/.vscode/settings.json b/Examples/MAX32680/LP/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/LP/.vscode/settings.json
+++ b/Examples/MAX32680/LP/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/LP/Makefile b/Examples/MAX32680/LP/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/LP/Makefile
+++ b/Examples/MAX32680/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/LP/README.md b/Examples/MAX32680/LP/README.md
index 70e98b20e6..943fb5b04c 100644
--- a/Examples/MAX32680/LP/README.md
+++ b/Examples/MAX32680/LP/README.md
@@ -7,7 +7,7 @@ TBD
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/LP/project.mk b/Examples/MAX32680/LP/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32680/LP/project.mk
+++ b/Examples/MAX32680/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Library_Generate/.vscode/README.md b/Examples/MAX32680/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32680/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32680/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32680/Library_Generate/Makefile b/Examples/MAX32680/Library_Generate/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/Library_Generate/Makefile
+++ b/Examples/MAX32680/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Library_Generate/README.md b/Examples/MAX32680/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32680/Library_Generate/README.md
+++ b/Examples/MAX32680/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Library_Generate/project.mk b/Examples/MAX32680/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32680/Library_Generate/project.mk
+++ b/Examples/MAX32680/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Library_Use/.vscode/README.md b/Examples/MAX32680/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Library_Use/.vscode/README.md
+++ b/Examples/MAX32680/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Library_Use/.vscode/settings.json b/Examples/MAX32680/Library_Use/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32680/Library_Use/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Library_Use/Makefile b/Examples/MAX32680/Library_Use/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/Library_Use/Makefile
+++ b/Examples/MAX32680/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Library_Use/README.md b/Examples/MAX32680/Library_Use/README.md
index 397cbee682..86f18757a9 100644
--- a/Examples/MAX32680/Library_Use/README.md
+++ b/Examples/MAX32680/Library_Use/README.md
@@ -9,7 +9,7 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Library_Use/project.mk b/Examples/MAX32680/Library_Use/project.mk
index 972fa6942d..697d6809f8 100644
--- a/Examples/MAX32680/Library_Use/project.mk
+++ b/Examples/MAX32680/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Pulse_Train/.vscode/README.md b/Examples/MAX32680/Pulse_Train/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Pulse_Train/.vscode/README.md
+++ b/Examples/MAX32680/Pulse_Train/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Pulse_Train/.vscode/settings.json b/Examples/MAX32680/Pulse_Train/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/Pulse_Train/.vscode/settings.json
+++ b/Examples/MAX32680/Pulse_Train/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Pulse_Train/Makefile b/Examples/MAX32680/Pulse_Train/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/Pulse_Train/Makefile
+++ b/Examples/MAX32680/Pulse_Train/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Pulse_Train/README.md b/Examples/MAX32680/Pulse_Train/README.md
index 9053553673..4766d584fd 100644
--- a/Examples/MAX32680/Pulse_Train/README.md
+++ b/Examples/MAX32680/Pulse_Train/README.md
@@ -19,7 +19,7 @@ On the Featherboard:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Pulse_Train/project.mk b/Examples/MAX32680/Pulse_Train/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/Pulse_Train/project.mk
+++ b/Examples/MAX32680/Pulse_Train/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/RV_ARM_Loader/.vscode/README.md b/Examples/MAX32680/RV_ARM_Loader/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/RV_ARM_Loader/.vscode/README.md
+++ b/Examples/MAX32680/RV_ARM_Loader/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/RV_ARM_Loader/.vscode/settings.json b/Examples/MAX32680/RV_ARM_Loader/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/RV_ARM_Loader/.vscode/settings.json
+++ b/Examples/MAX32680/RV_ARM_Loader/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/RV_ARM_Loader/Makefile b/Examples/MAX32680/RV_ARM_Loader/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/RV_ARM_Loader/Makefile
+++ b/Examples/MAX32680/RV_ARM_Loader/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/RV_ARM_Loader/README.md b/Examples/MAX32680/RV_ARM_Loader/README.md
index 75bf444cc2..68a1e5f2d0 100644
--- a/Examples/MAX32680/RV_ARM_Loader/README.md
+++ b/Examples/MAX32680/RV_ARM_Loader/README.md
@@ -8,7 +8,7 @@ RV_ARM_Loader runs on the ARM core to load the RISCV code space, setup the RISCV
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/RV_ARM_Loader/project.mk b/Examples/MAX32680/RV_ARM_Loader/project.mk
index 5e621347c3..08efab2773 100644
--- a/Examples/MAX32680/RV_ARM_Loader/project.mk
+++ b/Examples/MAX32680/RV_ARM_Loader/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/SPI/.vscode/README.md b/Examples/MAX32680/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/SPI/.vscode/README.md
+++ b/Examples/MAX32680/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/SPI/.vscode/settings.json b/Examples/MAX32680/SPI/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/SPI/.vscode/settings.json
+++ b/Examples/MAX32680/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/SPI/Makefile b/Examples/MAX32680/SPI/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/SPI/Makefile
+++ b/Examples/MAX32680/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/SPI/README.md b/Examples/MAX32680/SPI/README.md
index f87039c3b4..d964b8a3e5 100644
--- a/Examples/MAX32680/SPI/README.md
+++ b/Examples/MAX32680/SPI/README.md
@@ -12,7 +12,7 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/SPI/project.mk b/Examples/MAX32680/SPI/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/SPI/project.mk
+++ b/Examples/MAX32680/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/TMR/.vscode/README.md b/Examples/MAX32680/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/TMR/.vscode/README.md
+++ b/Examples/MAX32680/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/TMR/.vscode/settings.json b/Examples/MAX32680/TMR/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/TMR/.vscode/settings.json
+++ b/Examples/MAX32680/TMR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/TMR/Makefile b/Examples/MAX32680/TMR/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/TMR/Makefile
+++ b/Examples/MAX32680/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/TMR/README.md b/Examples/MAX32680/TMR/README.md
index 316ff60246..1b6dd2802f 100644
--- a/Examples/MAX32680/TMR/README.md
+++ b/Examples/MAX32680/TMR/README.md
@@ -18,7 +18,7 @@ Push PB1 to start the PWM and continuous timer and PB2 to start the oneshot time
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/TMR/project.mk b/Examples/MAX32680/TMR/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/TMR/project.mk
+++ b/Examples/MAX32680/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/TRNG/.vscode/README.md b/Examples/MAX32680/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/TRNG/.vscode/README.md
+++ b/Examples/MAX32680/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/TRNG/.vscode/settings.json b/Examples/MAX32680/TRNG/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/TRNG/.vscode/settings.json
+++ b/Examples/MAX32680/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/TRNG/Makefile b/Examples/MAX32680/TRNG/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/TRNG/Makefile
+++ b/Examples/MAX32680/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/TRNG/README.md b/Examples/MAX32680/TRNG/README.md
index 74bf686121..c9af46be83 100644
--- a/Examples/MAX32680/TRNG/README.md
+++ b/Examples/MAX32680/TRNG/README.md
@@ -7,7 +7,7 @@ The true random number generator (TRNG) hardware is exercised in this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/TRNG/project.mk b/Examples/MAX32680/TRNG/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/TRNG/project.mk
+++ b/Examples/MAX32680/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Temp_Monitor/.vscode/README.md b/Examples/MAX32680/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX32680/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Temp_Monitor/.vscode/settings.json b/Examples/MAX32680/Temp_Monitor/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX32680/Temp_Monitor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Temp_Monitor/Makefile b/Examples/MAX32680/Temp_Monitor/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/Temp_Monitor/Makefile
+++ b/Examples/MAX32680/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Temp_Monitor/README.md b/Examples/MAX32680/Temp_Monitor/README.md
index f534585e4d..867c7b379a 100644
--- a/Examples/MAX32680/Temp_Monitor/README.md
+++ b/Examples/MAX32680/Temp_Monitor/README.md
@@ -15,7 +15,7 @@ The temperature limits, flash storage page, and RTC time-of-day alarm period are
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Temp_Monitor/project.mk b/Examples/MAX32680/Temp_Monitor/project.mk
index 7e3d664eac..aebbcc92b4 100644
--- a/Examples/MAX32680/Temp_Monitor/project.mk
+++ b/Examples/MAX32680/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/UART/.vscode/README.md b/Examples/MAX32680/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/UART/.vscode/README.md
+++ b/Examples/MAX32680/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/UART/.vscode/settings.json b/Examples/MAX32680/UART/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/UART/.vscode/settings.json
+++ b/Examples/MAX32680/UART/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/UART/Makefile b/Examples/MAX32680/UART/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/UART/Makefile
+++ b/Examples/MAX32680/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/UART/README.md b/Examples/MAX32680/UART/README.md
index ecd667527b..65a89febc3 100644
--- a/Examples/MAX32680/UART/README.md
+++ b/Examples/MAX32680/UART/README.md
@@ -7,7 +7,7 @@ This application uses two serial ports to send and receive data. One serial por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/UART/project.mk b/Examples/MAX32680/UART/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/UART/project.mk
+++ b/Examples/MAX32680/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/WUT/.vscode/README.md b/Examples/MAX32680/WUT/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/WUT/.vscode/README.md
+++ b/Examples/MAX32680/WUT/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/WUT/.vscode/settings.json b/Examples/MAX32680/WUT/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/WUT/.vscode/settings.json
+++ b/Examples/MAX32680/WUT/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/WUT/Makefile b/Examples/MAX32680/WUT/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/WUT/Makefile
+++ b/Examples/MAX32680/WUT/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/WUT/README.md b/Examples/MAX32680/WUT/README.md
index 4c4fb72b04..0b68ce73f0 100644
--- a/Examples/MAX32680/WUT/README.md
+++ b/Examples/MAX32680/WUT/README.md
@@ -8,7 +8,7 @@ This Example shows how to wake up a device after it is asleep with a wake up tim
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/WUT/project.mk b/Examples/MAX32680/WUT/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/WUT/project.mk
+++ b/Examples/MAX32680/WUT/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/Watchdog/.vscode/README.md b/Examples/MAX32680/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/Watchdog/.vscode/README.md
+++ b/Examples/MAX32680/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/Watchdog/.vscode/settings.json b/Examples/MAX32680/Watchdog/.vscode/settings.json
index 6b8c802c92..92695710ec 100755
--- a/Examples/MAX32680/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32680/Watchdog/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/Watchdog/Makefile b/Examples/MAX32680/Watchdog/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/Watchdog/Makefile
+++ b/Examples/MAX32680/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/Watchdog/README.md b/Examples/MAX32680/Watchdog/README.md
index 9ce11fd286..8fb13c04d8 100644
--- a/Examples/MAX32680/Watchdog/README.md
+++ b/Examples/MAX32680/Watchdog/README.md
@@ -9,7 +9,7 @@ When the application begins, it initializes and starts the watchdog timer. You
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32680/Watchdog/project.mk b/Examples/MAX32680/Watchdog/project.mk
index 4182e96717..1773541b7d 100644
--- a/Examples/MAX32680/Watchdog/project.mk
+++ b/Examples/MAX32680/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32680/WearLeveling/.vscode/README.md b/Examples/MAX32680/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32680/WearLeveling/.vscode/README.md
+++ b/Examples/MAX32680/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32680/WearLeveling/.vscode/settings.json b/Examples/MAX32680/WearLeveling/.vscode/settings.json
index 0fc813be2d..48b3540daa 100755
--- a/Examples/MAX32680/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX32680/WearLeveling/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32680/WearLeveling/Makefile b/Examples/MAX32680/WearLeveling/Makefile
index 7a257594bf..83f061eecb 100644
--- a/Examples/MAX32680/WearLeveling/Makefile
+++ b/Examples/MAX32680/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32680/WearLeveling/README.md b/Examples/MAX32680/WearLeveling/README.md
index b2419f6a89..c3458dc5cd 100644
--- a/Examples/MAX32680/WearLeveling/README.md
+++ b/Examples/MAX32680/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32680EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX32680EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX32680/WearLeveling/project.mk b/Examples/MAX32680/WearLeveling/project.mk
index 16e450a8b6..8b1313bcf1 100644
--- a/Examples/MAX32680/WearLeveling/project.mk
+++ b/Examples/MAX32680/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32690/ADC/.vscode/README.md b/Examples/MAX32690/ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ADC/.vscode/README.md
+++ b/Examples/MAX32690/ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ADC/.vscode/settings.json b/Examples/MAX32690/ADC/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/ADC/.vscode/settings.json
+++ b/Examples/MAX32690/ADC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ADC/Makefile b/Examples/MAX32690/ADC/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/ADC/Makefile
+++ b/Examples/MAX32690/ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ADC/README.md b/Examples/MAX32690/ADC/README.md
index 16dae62b6c..8c9524990b 100644
--- a/Examples/MAX32690/ADC/README.md
+++ b/Examples/MAX32690/ADC/README.md
@@ -10,7 +10,7 @@ Additionally the trigger source that starts the ADC conversion can be selected a
### Project Usage
-Universal instructions on building, flashing, and debugging this project on supported boards can be found in the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/).
+Universal instructions on building, flashing, and debugging this project on supported boards can be found in the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/).
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/ADC/project.mk b/Examples/MAX32690/ADC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/ADC/project.mk
+++ b/Examples/MAX32690/ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/ARM-DSP/README.md b/Examples/MAX32690/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX32690/ARM-DSP/README.md
+++ b/Examples/MAX32690/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_bayes_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_bayes_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_convolution_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_convolution_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_fir_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_fir_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_matrix_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_matrix_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_svm_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_svm_example/project.mk
index f0e439d8d9..2babb60784 100644
--- a/Examples/MAX32690/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX32690/ARM-DSP/arm_variance_example/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX32690/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX32690/ARM-DSP/arm_variance_example/project.mk
index 1feb1360a7..4104aa327d 100644
--- a/Examples/MAX32690/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX32690/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/settings.json
index 34114f0bea..fc28e29238 100755
--- a/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE4_ctr/Makefile b/Examples/MAX32690/Bluetooth/BLE4_ctr/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE4_ctr/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE4_ctr/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE4_ctr/README.md b/Examples/MAX32690/Bluetooth/BLE4_ctr/README.md
index f7120613c2..2e180560c4 100644
--- a/Examples/MAX32690/Bluetooth/BLE4_ctr/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE4_ctr/README.md
@@ -8,7 +8,7 @@ Refer to the [BLE4_ctr](../../../Libraries/Cordio/docs/Applications/BLE4_ctr.md)
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32690/Bluetooth/BLE4_ctr/project.mk b/Examples/MAX32690/Bluetooth/BLE4_ctr/project.mk
index 4d4085887f..c5dd1e5a5e 100644
--- a/Examples/MAX32690/Bluetooth/BLE4_ctr/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE4_ctr/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/settings.json
index 34114f0bea..fc28e29238 100755
--- a/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE5_ctr/Makefile b/Examples/MAX32690/Bluetooth/BLE5_ctr/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE5_ctr/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE5_ctr/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE5_ctr/README.md b/Examples/MAX32690/Bluetooth/BLE5_ctr/README.md
index 696e20f259..115e9740b1 100644
--- a/Examples/MAX32690/Bluetooth/BLE5_ctr/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE5_ctr/README.md
@@ -8,7 +8,7 @@ Refer to the [BLE5_ctr](../../../Libraries/Cordio/docs/Applications/BLE5_ctr.md)
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32690/Bluetooth/BLE5_ctr/project.mk b/Examples/MAX32690/Bluetooth/BLE5_ctr/project.mk
index 3d34f082e7..6dde0241e1 100644
--- a/Examples/MAX32690/Bluetooth/BLE5_ctr/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE5_ctr/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/settings.json
index 148b721b3d..852694149f 100755
--- a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -77,6 +78,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/Makefile b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/README.md b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/README.md
index 1ca87f8c5e..2a82aadb8b 100644
--- a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/README.md
@@ -7,7 +7,7 @@ Refer to the [BLE_FreeRTOS](../../../Libraries/Cordio/docs/Applications/BLE_Free
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/project.mk b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/project.mk
index 84fc092212..8ae3e4ae28 100644
--- a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/settings.json
index 34114f0bea..fc28e29238 100755
--- a/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE_datc/Makefile b/Examples/MAX32690/Bluetooth/BLE_datc/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE_datc/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE_datc/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE_datc/README.md b/Examples/MAX32690/Bluetooth/BLE_datc/README.md
index d17e50cdcb..63b6c4dee0 100644
--- a/Examples/MAX32690/Bluetooth/BLE_datc/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_datc/README.md
@@ -6,7 +6,7 @@ Refer to the [BLE_datc_dats](../../../Libraries/Cordio/docs/Applications/BLE_dat
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32690/Bluetooth/BLE_datc/project.mk b/Examples/MAX32690/Bluetooth/BLE_datc/project.mk
index ebc626fee4..f22549e03a 100644
--- a/Examples/MAX32690/Bluetooth/BLE_datc/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE_datc/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/settings.json
index 34114f0bea..fc28e29238 100755
--- a/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE_dats/Makefile b/Examples/MAX32690/Bluetooth/BLE_dats/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE_dats/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE_dats/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE_dats/README.md b/Examples/MAX32690/Bluetooth/BLE_dats/README.md
index d4e77c07a7..a1bf9635a0 100644
--- a/Examples/MAX32690/Bluetooth/BLE_dats/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_dats/README.md
@@ -6,7 +6,7 @@ Refer to the [BLE_datc_dats](../../../Libraries/Cordio/docs/Applications/BLE_dat
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32690/Bluetooth/BLE_dats/project.mk b/Examples/MAX32690/Bluetooth/BLE_dats/project.mk
index 89cb4b56d3..fbf455e295 100644
--- a/Examples/MAX32690/Bluetooth/BLE_dats/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE_dats/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/settings.json
index 34114f0bea..fc28e29238 100755
--- a/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE_fcc/Makefile b/Examples/MAX32690/Bluetooth/BLE_fcc/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE_fcc/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE_fcc/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE_fcc/README.md b/Examples/MAX32690/Bluetooth/BLE_fcc/README.md
index 850d29da11..2031859870 100644
--- a/Examples/MAX32690/Bluetooth/BLE_fcc/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_fcc/README.md
@@ -7,7 +7,7 @@ Refer to [BLE_fcc](../../../Libraries/Cordio/docs/Applications/BLE_fcc.md) docum
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32690/Bluetooth/BLE_fcc/project.mk b/Examples/MAX32690/Bluetooth/BLE_fcc/project.mk
index f3456cc7bb..52c2a5eb9c 100644
--- a/Examples/MAX32690/Bluetooth/BLE_fcc/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE_fcc/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/settings.json
index 34114f0bea..fc28e29238 100755
--- a/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE_fit/Makefile b/Examples/MAX32690/Bluetooth/BLE_fit/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE_fit/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE_fit/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE_fit/README.md b/Examples/MAX32690/Bluetooth/BLE_fit/README.md
index 2e62e0efd8..f3a4db79bb 100644
--- a/Examples/MAX32690/Bluetooth/BLE_fit/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_fit/README.md
@@ -6,7 +6,7 @@ Refer to [BLE_fit](../../../Libraries/Cordio/docs/Applications/BLE_fit.md) docum
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32690/Bluetooth/BLE_fit/project.mk b/Examples/MAX32690/Bluetooth/BLE_fit/project.mk
index 8f4c45e45f..13430100ab 100644
--- a/Examples/MAX32690/Bluetooth/BLE_fit/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE_fit/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/settings.json
index 34114f0bea..fc28e29238 100755
--- a/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE_mcs/Makefile b/Examples/MAX32690/Bluetooth/BLE_mcs/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE_mcs/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE_mcs/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE_mcs/README.md b/Examples/MAX32690/Bluetooth/BLE_mcs/README.md
index 0acb7b6b02..4b7b064d27 100644
--- a/Examples/MAX32690/Bluetooth/BLE_mcs/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_mcs/README.md
@@ -8,7 +8,7 @@ Refer to the [BLE_mcs](../../../Libraries/Cordio/docs/Applications/BLE_mcs.md) d
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32690/Bluetooth/BLE_mcs/project.mk b/Examples/MAX32690/Bluetooth/BLE_mcs/project.mk
index c7cee6604a..db1403377f 100644
--- a/Examples/MAX32690/Bluetooth/BLE_mcs/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE_mcs/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/settings.json
index 34114f0bea..fc28e29238 100755
--- a/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE_otac/Makefile b/Examples/MAX32690/Bluetooth/BLE_otac/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE_otac/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE_otac/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE_otac/README.md b/Examples/MAX32690/Bluetooth/BLE_otac/README.md
index 3945d272a1..38989e48ae 100644
--- a/Examples/MAX32690/Bluetooth/BLE_otac/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_otac/README.md
@@ -11,7 +11,7 @@ Refer to the [BLE_otac_otas](../../../Libraries/Cordio/docs/Applications/BLE_ota
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32690/Bluetooth/BLE_otac/project.mk b/Examples/MAX32690/Bluetooth/BLE_otac/project.mk
index 5d68b93ece..e382b57fcc 100644
--- a/Examples/MAX32690/Bluetooth/BLE_otac/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE_otac/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/settings.json
index 34114f0bea..fc28e29238 100755
--- a/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE_otas/Makefile b/Examples/MAX32690/Bluetooth/BLE_otas/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE_otas/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE_otas/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE_otas/README.md b/Examples/MAX32690/Bluetooth/BLE_otas/README.md
index 0f20cf9b59..304036a35b 100644
--- a/Examples/MAX32690/Bluetooth/BLE_otas/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_otas/README.md
@@ -11,7 +11,7 @@ Refer to the [BLE_otac_otas](../../../Libraries/Cordio/docs/Applications/BLE_ota
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
## Required Connections
* Connect a USB cable between the PC and the (USB/PWR - UART) connector.
diff --git a/Examples/MAX32690/Bluetooth/BLE_otas/project.mk b/Examples/MAX32690/Bluetooth/BLE_otas/project.mk
index 89a0b88bf9..f17c6967a2 100644
--- a/Examples/MAX32690/Bluetooth/BLE_otas/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE_otas/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/settings.json b/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/settings.json
index 34114f0bea..fc28e29238 100755
--- a/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -74,6 +75,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/BLE_periph/Makefile b/Examples/MAX32690/Bluetooth/BLE_periph/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/BLE_periph/Makefile
+++ b/Examples/MAX32690/Bluetooth/BLE_periph/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/BLE_periph/README.md b/Examples/MAX32690/Bluetooth/BLE_periph/README.md
index de174eff33..2fc9311f83 100644
--- a/Examples/MAX32690/Bluetooth/BLE_periph/README.md
+++ b/Examples/MAX32690/Bluetooth/BLE_periph/README.md
@@ -5,7 +5,7 @@ Refer to the [BLE_periph](../../../Libraries/Cordio/docs/Applications/BLE_periph
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Required Connections
diff --git a/Examples/MAX32690/Bluetooth/BLE_periph/project.mk b/Examples/MAX32690/Bluetooth/BLE_periph/project.mk
index 8f4c45e45f..13430100ab 100644
--- a/Examples/MAX32690/Bluetooth/BLE_periph/project.mk
+++ b/Examples/MAX32690/Bluetooth/BLE_periph/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/Bootloader/.vscode/README.md b/Examples/MAX32690/Bluetooth/Bootloader/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/Bootloader/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/Bootloader/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/Bootloader/.vscode/settings.json b/Examples/MAX32690/Bluetooth/Bootloader/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/Bluetooth/Bootloader/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/Bootloader/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Bluetooth/Bootloader/Makefile b/Examples/MAX32690/Bluetooth/Bootloader/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/Bootloader/Makefile
+++ b/Examples/MAX32690/Bluetooth/Bootloader/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Bluetooth/Bootloader/README.md b/Examples/MAX32690/Bluetooth/Bootloader/README.md
index a5b474440b..e988d5bf3a 100644
--- a/Examples/MAX32690/Bluetooth/Bootloader/README.md
+++ b/Examples/MAX32690/Bluetooth/Bootloader/README.md
@@ -16,7 +16,7 @@ __0x10300000__: Update flash space
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Bluetooth/Bootloader/project.mk b/Examples/MAX32690/Bluetooth/Bootloader/project.mk
index 0b4e742676..1a73bcdd7c 100644
--- a/Examples/MAX32690/Bluetooth/Bootloader/project.mk
+++ b/Examples/MAX32690/Bluetooth/Bootloader/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Bluetooth/RF_Test/.cproject b/Examples/MAX32690/Bluetooth/RF_Test/.cproject
index 8cb41b5693..86933c50f0 100644
--- a/Examples/MAX32690/Bluetooth/RF_Test/.cproject
+++ b/Examples/MAX32690/Bluetooth/RF_Test/.cproject
@@ -32,7 +32,8 @@
-
+
+
diff --git a/Examples/MAX32690/Bluetooth/RF_Test/.vscode/README.md b/Examples/MAX32690/Bluetooth/RF_Test/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Bluetooth/RF_Test/.vscode/README.md
+++ b/Examples/MAX32690/Bluetooth/RF_Test/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Bluetooth/RF_Test/.vscode/settings.json b/Examples/MAX32690/Bluetooth/RF_Test/.vscode/settings.json
index 148b721b3d..2ad2f9acde 100755
--- a/Examples/MAX32690/Bluetooth/RF_Test/.vscode/settings.json
+++ b/Examples/MAX32690/Bluetooth/RF_Test/.vscode/settings.json
@@ -48,11 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
+ "${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/include",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources/stack/cfg",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-mesh-apps/include",
@@ -77,11 +79,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
+ "${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-apps/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-host/sources",
"${config:MAXIM_PATH}/Libraries/Cordio/ble-mesh-apps/sources",
diff --git a/Examples/MAX32690/Bluetooth/RF_Test/Makefile b/Examples/MAX32690/Bluetooth/RF_Test/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/Bluetooth/RF_Test/Makefile
+++ b/Examples/MAX32690/Bluetooth/RF_Test/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/CAN/.vscode/README.md b/Examples/MAX32690/CAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/CAN/.vscode/README.md
+++ b/Examples/MAX32690/CAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/CAN/.vscode/settings.json b/Examples/MAX32690/CAN/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/CAN/.vscode/settings.json
+++ b/Examples/MAX32690/CAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/CAN/Makefile b/Examples/MAX32690/CAN/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/CAN/Makefile
+++ b/Examples/MAX32690/CAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/CAN/README.md b/Examples/MAX32690/CAN/README.md
index f3fc3ba784..052ec42aaa 100644
--- a/Examples/MAX32690/CAN/README.md
+++ b/Examples/MAX32690/CAN/README.md
@@ -8,7 +8,7 @@ Connect CAN signals on header JH8 to CAN bus.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/CAN/project.mk b/Examples/MAX32690/CAN/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/CAN/project.mk
+++ b/Examples/MAX32690/CAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/CRC/.vscode/README.md b/Examples/MAX32690/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/CRC/.vscode/README.md
+++ b/Examples/MAX32690/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/CRC/.vscode/settings.json b/Examples/MAX32690/CRC/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/CRC/.vscode/settings.json
+++ b/Examples/MAX32690/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/CRC/Makefile b/Examples/MAX32690/CRC/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/CRC/Makefile
+++ b/Examples/MAX32690/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/CRC/README.md b/Examples/MAX32690/CRC/README.md
index 56ba32783a..a7a57885fe 100644
--- a/Examples/MAX32690/CRC/README.md
+++ b/Examples/MAX32690/CRC/README.md
@@ -6,7 +6,7 @@ This example demonstrates the use of the HW CRC calculator. The example first g
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/CRC/project.mk b/Examples/MAX32690/CRC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/CRC/project.mk
+++ b/Examples/MAX32690/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/CTB_AES/.vscode/README.md b/Examples/MAX32690/CTB_AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/CTB_AES/.vscode/README.md
+++ b/Examples/MAX32690/CTB_AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/CTB_AES/.vscode/settings.json b/Examples/MAX32690/CTB_AES/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/CTB_AES/.vscode/settings.json
+++ b/Examples/MAX32690/CTB_AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/CTB_AES/Makefile b/Examples/MAX32690/CTB_AES/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/CTB_AES/Makefile
+++ b/Examples/MAX32690/CTB_AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/CTB_AES/README.md b/Examples/MAX32690/CTB_AES/README.md
index 46120ae212..70a087e925 100644
--- a/Examples/MAX32690/CTB_AES/README.md
+++ b/Examples/MAX32690/CTB_AES/README.md
@@ -6,7 +6,7 @@ This application demonstrates both encryption and decryption using the Crypto To
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/CTB_AES/project.mk b/Examples/MAX32690/CTB_AES/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/CTB_AES/project.mk
+++ b/Examples/MAX32690/CTB_AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Coremark/.vscode/README.md b/Examples/MAX32690/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Coremark/.vscode/README.md
+++ b/Examples/MAX32690/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Coremark/.vscode/settings.json b/Examples/MAX32690/Coremark/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/Coremark/.vscode/settings.json
+++ b/Examples/MAX32690/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Coremark/Makefile b/Examples/MAX32690/Coremark/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Coremark/Makefile
+++ b/Examples/MAX32690/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Coremark/README.md b/Examples/MAX32690/Coremark/README.md
index a9f293e213..a826e11400 100644
--- a/Examples/MAX32690/Coremark/README.md
+++ b/Examples/MAX32690/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Coremark/project.mk b/Examples/MAX32690/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX32690/Coremark/project.mk
+++ b/Examples/MAX32690/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/DMA/.vscode/README.md b/Examples/MAX32690/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/DMA/.vscode/README.md
+++ b/Examples/MAX32690/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/DMA/.vscode/settings.json b/Examples/MAX32690/DMA/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/DMA/.vscode/settings.json
+++ b/Examples/MAX32690/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/DMA/Makefile b/Examples/MAX32690/DMA/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/DMA/Makefile
+++ b/Examples/MAX32690/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/DMA/README.md b/Examples/MAX32690/DMA/README.md
index 99d793dbd6..5f12ba9245 100644
--- a/Examples/MAX32690/DMA/README.md
+++ b/Examples/MAX32690/DMA/README.md
@@ -8,7 +8,7 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/DMA/project.mk b/Examples/MAX32690/DMA/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/DMA/project.mk
+++ b/Examples/MAX32690/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32690/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX32690/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX32690/EEPROM_Emulator/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX32690/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/EEPROM_Emulator/Makefile b/Examples/MAX32690/EEPROM_Emulator/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/EEPROM_Emulator/Makefile
+++ b/Examples/MAX32690/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/EEPROM_Emulator/README.md b/Examples/MAX32690/EEPROM_Emulator/README.md
index 5e2f0265e7..7393cf96a9 100644
--- a/Examples/MAX32690/EEPROM_Emulator/README.md
+++ b/Examples/MAX32690/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX32690 to emulate a 64KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -47,7 +47,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/EEPROM_Emulator/project.mk b/Examples/MAX32690/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32690/EEPROM_Emulator/project.mk
+++ b/Examples/MAX32690/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Flash/.vscode/README.md b/Examples/MAX32690/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Flash/.vscode/README.md
+++ b/Examples/MAX32690/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Flash/.vscode/settings.json b/Examples/MAX32690/Flash/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/Flash/.vscode/settings.json
+++ b/Examples/MAX32690/Flash/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Flash/Makefile b/Examples/MAX32690/Flash/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Flash/Makefile
+++ b/Examples/MAX32690/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Flash/README.md b/Examples/MAX32690/Flash/README.md
index 400d97775b..408240e02b 100644
--- a/Examples/MAX32690/Flash/README.md
+++ b/Examples/MAX32690/Flash/README.md
@@ -20,7 +20,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Flash/project.mk b/Examples/MAX32690/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX32690/Flash/project.mk
+++ b/Examples/MAX32690/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Flash_CLI/.vscode/README.md b/Examples/MAX32690/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX32690/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Flash_CLI/.vscode/settings.json b/Examples/MAX32690/Flash_CLI/.vscode/settings.json
index 4c497fcb8b..3a48fd62b7 100755
--- a/Examples/MAX32690/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX32690/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Flash_CLI/Makefile b/Examples/MAX32690/Flash_CLI/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Flash_CLI/Makefile
+++ b/Examples/MAX32690/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Flash_CLI/README.md b/Examples/MAX32690/Flash_CLI/README.md
index f1e894e718..6a511e4faa 100644
--- a/Examples/MAX32690/Flash_CLI/README.md
+++ b/Examples/MAX32690/Flash_CLI/README.md
@@ -8,7 +8,7 @@ This example demonstates the CLI commands feature of FreeRTOS, various features
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Flash_CLI/project.mk b/Examples/MAX32690/Flash_CLI/project.mk
index 106d409dda..52b9fb6a5d 100644
--- a/Examples/MAX32690/Flash_CLI/project.mk
+++ b/Examples/MAX32690/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32690/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX32690/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX32690/FreeRTOSDemo/.vscode/settings.json
index 4c497fcb8b..3a48fd62b7 100755
--- a/Examples/MAX32690/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX32690/FreeRTOSDemo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/FreeRTOSDemo/Makefile b/Examples/MAX32690/FreeRTOSDemo/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/FreeRTOSDemo/Makefile
+++ b/Examples/MAX32690/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/FreeRTOSDemo/README.md b/Examples/MAX32690/FreeRTOSDemo/README.md
index db0722515e..fa07eb874b 100644
--- a/Examples/MAX32690/FreeRTOSDemo/README.md
+++ b/Examples/MAX32690/FreeRTOSDemo/README.md
@@ -6,7 +6,7 @@ A basic getting started application for FreeRTOS.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/FreeRTOSDemo/project.mk b/Examples/MAX32690/FreeRTOSDemo/project.mk
index 106d409dda..52b9fb6a5d 100644
--- a/Examples/MAX32690/FreeRTOSDemo/project.mk
+++ b/Examples/MAX32690/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/GPIO/.vscode/README.md b/Examples/MAX32690/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/GPIO/.vscode/README.md
+++ b/Examples/MAX32690/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/GPIO/.vscode/settings.json b/Examples/MAX32690/GPIO/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/GPIO/.vscode/settings.json
+++ b/Examples/MAX32690/GPIO/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/GPIO/Makefile b/Examples/MAX32690/GPIO/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/GPIO/Makefile
+++ b/Examples/MAX32690/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/GPIO/README.md b/Examples/MAX32690/GPIO/README.md
index af1652af4c..bf53bfe2a0 100644
--- a/Examples/MAX32690/GPIO/README.md
+++ b/Examples/MAX32690/GPIO/README.md
@@ -8,7 +8,7 @@ P2.11 (P1.11 on MAX32690FTHR) is continuously scanned and whatever value is read
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/GPIO/project.mk b/Examples/MAX32690/GPIO/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/GPIO/project.mk
+++ b/Examples/MAX32690/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/HBMC/.vscode/README.md b/Examples/MAX32690/HBMC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/HBMC/.vscode/README.md
+++ b/Examples/MAX32690/HBMC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/HBMC/.vscode/settings.json b/Examples/MAX32690/HBMC/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/HBMC/.vscode/settings.json
+++ b/Examples/MAX32690/HBMC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/HBMC/Makefile b/Examples/MAX32690/HBMC/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/HBMC/Makefile
+++ b/Examples/MAX32690/HBMC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/HBMC/README.md b/Examples/MAX32690/HBMC/README.md
index 42765ad121..51b881657a 100644
--- a/Examples/MAX32690/HBMC/README.md
+++ b/Examples/MAX32690/HBMC/README.md
@@ -10,7 +10,7 @@ A function to blink an LED (found in ramfunc.c) is copied to external memory and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/HBMC/project.mk b/Examples/MAX32690/HBMC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/HBMC/project.mk
+++ b/Examples/MAX32690/HBMC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Hash/.vscode/README.md b/Examples/MAX32690/Hash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Hash/.vscode/README.md
+++ b/Examples/MAX32690/Hash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Hash/.vscode/settings.json b/Examples/MAX32690/Hash/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/Hash/.vscode/settings.json
+++ b/Examples/MAX32690/Hash/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Hash/Makefile b/Examples/MAX32690/Hash/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Hash/Makefile
+++ b/Examples/MAX32690/Hash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Hash/README.md b/Examples/MAX32690/Hash/README.md
index a979b91819..728151eae7 100644
--- a/Examples/MAX32690/Hash/README.md
+++ b/Examples/MAX32690/Hash/README.md
@@ -6,7 +6,7 @@ This example demonstrates the use of the CTB Hash Function: SHA-256.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Hash/project.mk b/Examples/MAX32690/Hash/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/Hash/project.mk
+++ b/Examples/MAX32690/Hash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Hello_World/.vscode/README.md b/Examples/MAX32690/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Hello_World/.vscode/README.md
+++ b/Examples/MAX32690/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Hello_World/.vscode/settings.json b/Examples/MAX32690/Hello_World/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/Hello_World/.vscode/settings.json
+++ b/Examples/MAX32690/Hello_World/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Hello_World/Makefile b/Examples/MAX32690/Hello_World/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Hello_World/Makefile
+++ b/Examples/MAX32690/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Hello_World/README.md b/Examples/MAX32690/Hello_World/README.md
index 3d0e704bd3..b91490ab39 100644
--- a/Examples/MAX32690/Hello_World/README.md
+++ b/Examples/MAX32690/Hello_World/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Hello_World/project.mk b/Examples/MAX32690/Hello_World/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/Hello_World/project.mk
+++ b/Examples/MAX32690/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32690/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX32690/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX32690/Hello_World_Cpp/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX32690/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Hello_World_Cpp/Makefile b/Examples/MAX32690/Hello_World_Cpp/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Hello_World_Cpp/Makefile
+++ b/Examples/MAX32690/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Hello_World_Cpp/README.md b/Examples/MAX32690/Hello_World_Cpp/README.md
index ad3e87a579..1713fb3e5a 100644
--- a/Examples/MAX32690/Hello_World_Cpp/README.md
+++ b/Examples/MAX32690/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Hello_World_Cpp/project.mk b/Examples/MAX32690/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX32690/Hello_World_Cpp/project.mk
+++ b/Examples/MAX32690/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX32690/I2C/.vscode/README.md b/Examples/MAX32690/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/I2C/.vscode/README.md
+++ b/Examples/MAX32690/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/I2C/.vscode/settings.json b/Examples/MAX32690/I2C/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/I2C/.vscode/settings.json
+++ b/Examples/MAX32690/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/I2C/Makefile b/Examples/MAX32690/I2C/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/I2C/Makefile
+++ b/Examples/MAX32690/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/I2C/README.md b/Examples/MAX32690/I2C/README.md
index 636a722086..bc87822abb 100644
--- a/Examples/MAX32690/I2C/README.md
+++ b/Examples/MAX32690/I2C/README.md
@@ -6,7 +6,7 @@ This example uses the I2C Master to read/write from/to the I2C Slave.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/I2C/project.mk b/Examples/MAX32690/I2C/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/I2C/project.mk
+++ b/Examples/MAX32690/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/I2C_MNGR/.vscode/README.md b/Examples/MAX32690/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX32690/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/I2C_MNGR/.vscode/settings.json b/Examples/MAX32690/I2C_MNGR/.vscode/settings.json
index f7f779a197..f18f0aedc1 100755
--- a/Examples/MAX32690/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX32690/I2C_MNGR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/I2C_MNGR/Makefile b/Examples/MAX32690/I2C_MNGR/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/I2C_MNGR/Makefile
+++ b/Examples/MAX32690/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/I2C_MNGR/README.md b/Examples/MAX32690/I2C_MNGR/README.md
index f6dbfb8552..2c1673b487 100644
--- a/Examples/MAX32690/I2C_MNGR/README.md
+++ b/Examples/MAX32690/I2C_MNGR/README.md
@@ -10,7 +10,7 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/I2C_MNGR/project.mk b/Examples/MAX32690/I2C_MNGR/project.mk
index afefae0c40..c006c3ef92 100644
--- a/Examples/MAX32690/I2C_MNGR/project.mk
+++ b/Examples/MAX32690/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/I2C_SCAN/.vscode/README.md b/Examples/MAX32690/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX32690/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/I2C_SCAN/.vscode/settings.json b/Examples/MAX32690/I2C_SCAN/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX32690/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/I2C_SCAN/Makefile b/Examples/MAX32690/I2C_SCAN/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/I2C_SCAN/Makefile
+++ b/Examples/MAX32690/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/I2C_SCAN/README.md b/Examples/MAX32690/I2C_SCAN/README.md
index 9e09cb1f0c..69ab070b0f 100644
--- a/Examples/MAX32690/I2C_SCAN/README.md
+++ b/Examples/MAX32690/I2C_SCAN/README.md
@@ -5,7 +5,7 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/I2C_SCAN/project.mk b/Examples/MAX32690/I2C_SCAN/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/I2C_SCAN/project.mk
+++ b/Examples/MAX32690/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/I2C_Sensor/.vscode/README.md b/Examples/MAX32690/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX32690/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/I2C_Sensor/.vscode/settings.json b/Examples/MAX32690/I2C_Sensor/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX32690/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/I2C_Sensor/Makefile b/Examples/MAX32690/I2C_Sensor/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/I2C_Sensor/Makefile
+++ b/Examples/MAX32690/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/I2C_Sensor/README.md b/Examples/MAX32690/I2C_Sensor/README.md
index c253713bc9..5ebbe40ef9 100644
--- a/Examples/MAX32690/I2C_Sensor/README.md
+++ b/Examples/MAX32690/I2C_Sensor/README.md
@@ -8,7 +8,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/I2C_Sensor/project.mk b/Examples/MAX32690/I2C_Sensor/project.mk
index 7d28c02d02..3c3d48bae5 100644
--- a/Examples/MAX32690/I2C_Sensor/project.mk
+++ b/Examples/MAX32690/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/I2S/.vscode/README.md b/Examples/MAX32690/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/I2S/.vscode/README.md
+++ b/Examples/MAX32690/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/I2S/.vscode/settings.json b/Examples/MAX32690/I2S/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/I2S/.vscode/settings.json
+++ b/Examples/MAX32690/I2S/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/I2S/Makefile b/Examples/MAX32690/I2S/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/I2S/Makefile
+++ b/Examples/MAX32690/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/I2S/README.md b/Examples/MAX32690/I2S/README.md
index d35644853e..5b2c350a06 100644
--- a/Examples/MAX32690/I2S/README.md
+++ b/Examples/MAX32690/I2S/README.md
@@ -6,7 +6,7 @@ This example demonstrates use of the I2S peripheral on the MAX32690 by transmitt
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/I2S/project.mk b/Examples/MAX32690/I2S/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/I2S/project.mk
+++ b/Examples/MAX32690/I2S/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/ICC/.vscode/README.md b/Examples/MAX32690/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/ICC/.vscode/README.md
+++ b/Examples/MAX32690/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/ICC/.vscode/settings.json b/Examples/MAX32690/ICC/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/ICC/.vscode/settings.json
+++ b/Examples/MAX32690/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/ICC/Makefile b/Examples/MAX32690/ICC/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/ICC/Makefile
+++ b/Examples/MAX32690/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/ICC/README.md b/Examples/MAX32690/ICC/README.md
index b2fab5167e..747ccf3cbb 100644
--- a/Examples/MAX32690/ICC/README.md
+++ b/Examples/MAX32690/ICC/README.md
@@ -11,7 +11,7 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/ICC/project.mk b/Examples/MAX32690/ICC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/ICC/project.mk
+++ b/Examples/MAX32690/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/LP/.vscode/README.md b/Examples/MAX32690/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/LP/.vscode/README.md
+++ b/Examples/MAX32690/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/LP/.vscode/settings.json b/Examples/MAX32690/LP/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/LP/.vscode/settings.json
+++ b/Examples/MAX32690/LP/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/LP/Makefile b/Examples/MAX32690/LP/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/LP/Makefile
+++ b/Examples/MAX32690/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/LP/README.md b/Examples/MAX32690/LP/README.md
index 133e7f73a4..f31b771cfc 100644
--- a/Examples/MAX32690/LP/README.md
+++ b/Examples/MAX32690/LP/README.md
@@ -6,7 +6,7 @@ This example demonstrates entering and exiting from the various operating modes.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/LP/project.mk b/Examples/MAX32690/LP/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/LP/project.mk
+++ b/Examples/MAX32690/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/LPCMP/.vscode/README.md b/Examples/MAX32690/LPCMP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/LPCMP/.vscode/README.md
+++ b/Examples/MAX32690/LPCMP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/LPCMP/.vscode/settings.json b/Examples/MAX32690/LPCMP/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/LPCMP/.vscode/settings.json
+++ b/Examples/MAX32690/LPCMP/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/LPCMP/Makefile b/Examples/MAX32690/LPCMP/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/LPCMP/Makefile
+++ b/Examples/MAX32690/LPCMP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/LPCMP/README.md b/Examples/MAX32690/LPCMP/README.md
index 4c6f9c93df..c9a7f5f332 100644
--- a/Examples/MAX32690/LPCMP/README.md
+++ b/Examples/MAX32690/LPCMP/README.md
@@ -8,7 +8,7 @@ The example is configured to use analog channels 0 and 1 as the negative and pos
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/LPCMP/project.mk b/Examples/MAX32690/LPCMP/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/LPCMP/project.mk
+++ b/Examples/MAX32690/LPCMP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Library_Generate/.vscode/README.md b/Examples/MAX32690/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX32690/Library_Generate/.vscode/README.md
+++ b/Examples/MAX32690/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX32690/Library_Generate/Makefile b/Examples/MAX32690/Library_Generate/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Library_Generate/Makefile
+++ b/Examples/MAX32690/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Library_Generate/README.md b/Examples/MAX32690/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX32690/Library_Generate/README.md
+++ b/Examples/MAX32690/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Library_Generate/project.mk b/Examples/MAX32690/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX32690/Library_Generate/project.mk
+++ b/Examples/MAX32690/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Library_Use/.vscode/README.md b/Examples/MAX32690/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Library_Use/.vscode/README.md
+++ b/Examples/MAX32690/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Library_Use/.vscode/settings.json b/Examples/MAX32690/Library_Use/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/Library_Use/.vscode/settings.json
+++ b/Examples/MAX32690/Library_Use/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Library_Use/Makefile b/Examples/MAX32690/Library_Use/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Library_Use/Makefile
+++ b/Examples/MAX32690/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Library_Use/README.md b/Examples/MAX32690/Library_Use/README.md
index 11f14369ad..a4a04aa756 100644
--- a/Examples/MAX32690/Library_Use/README.md
+++ b/Examples/MAX32690/Library_Use/README.md
@@ -9,7 +9,7 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Library_Use/project.mk b/Examples/MAX32690/Library_Use/project.mk
index ac32a7de2e..f724d98b79 100644
--- a/Examples/MAX32690/Library_Use/project.mk
+++ b/Examples/MAX32690/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Pulse_Train/.vscode/README.md b/Examples/MAX32690/Pulse_Train/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Pulse_Train/.vscode/README.md
+++ b/Examples/MAX32690/Pulse_Train/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Pulse_Train/.vscode/settings.json b/Examples/MAX32690/Pulse_Train/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/Pulse_Train/.vscode/settings.json
+++ b/Examples/MAX32690/Pulse_Train/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Pulse_Train/Makefile b/Examples/MAX32690/Pulse_Train/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Pulse_Train/Makefile
+++ b/Examples/MAX32690/Pulse_Train/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Pulse_Train/README.md b/Examples/MAX32690/Pulse_Train/README.md
index ca20299ca5..c152f558eb 100644
--- a/Examples/MAX32690/Pulse_Train/README.md
+++ b/Examples/MAX32690/Pulse_Train/README.md
@@ -16,7 +16,7 @@ On the feather board, use a logic analyzer to observe the signals on P1.8 and P1
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Pulse_Train/project.mk b/Examples/MAX32690/Pulse_Train/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/Pulse_Train/project.mk
+++ b/Examples/MAX32690/Pulse_Train/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/RTC/.vscode/README.md b/Examples/MAX32690/RTC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/RTC/.vscode/README.md
+++ b/Examples/MAX32690/RTC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/RTC/.vscode/settings.json b/Examples/MAX32690/RTC/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/RTC/.vscode/settings.json
+++ b/Examples/MAX32690/RTC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/RTC/Makefile b/Examples/MAX32690/RTC/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/RTC/Makefile
+++ b/Examples/MAX32690/RTC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/RTC/README.md b/Examples/MAX32690/RTC/README.md
index b2d9e35f69..e6e51086a5 100644
--- a/Examples/MAX32690/RTC/README.md
+++ b/Examples/MAX32690/RTC/README.md
@@ -21,7 +21,7 @@ On feather board:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/RTC/project.mk b/Examples/MAX32690/RTC/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/RTC/project.mk
+++ b/Examples/MAX32690/RTC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/RTC_Backup/.vscode/README.md b/Examples/MAX32690/RTC_Backup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/RTC_Backup/.vscode/README.md
+++ b/Examples/MAX32690/RTC_Backup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/RTC_Backup/.vscode/settings.json b/Examples/MAX32690/RTC_Backup/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/RTC_Backup/.vscode/settings.json
+++ b/Examples/MAX32690/RTC_Backup/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/RTC_Backup/Makefile b/Examples/MAX32690/RTC_Backup/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/RTC_Backup/Makefile
+++ b/Examples/MAX32690/RTC_Backup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/RTC_Backup/README.md b/Examples/MAX32690/RTC_Backup/README.md
index 843ef44265..6ea63b1b7f 100644
--- a/Examples/MAX32690/RTC_Backup/README.md
+++ b/Examples/MAX32690/RTC_Backup/README.md
@@ -8,7 +8,7 @@ The RTC time-of-day alarm is used to wake the device from backup mode every TIME
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/RTC_Backup/project.mk b/Examples/MAX32690/RTC_Backup/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/RTC_Backup/project.mk
+++ b/Examples/MAX32690/RTC_Backup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/RV_ARM_Loader/.vscode/README.md b/Examples/MAX32690/RV_ARM_Loader/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/RV_ARM_Loader/.vscode/README.md
+++ b/Examples/MAX32690/RV_ARM_Loader/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/RV_ARM_Loader/.vscode/settings.json b/Examples/MAX32690/RV_ARM_Loader/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/RV_ARM_Loader/.vscode/settings.json
+++ b/Examples/MAX32690/RV_ARM_Loader/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/RV_ARM_Loader/Makefile b/Examples/MAX32690/RV_ARM_Loader/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/RV_ARM_Loader/Makefile
+++ b/Examples/MAX32690/RV_ARM_Loader/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/RV_ARM_Loader/README.md b/Examples/MAX32690/RV_ARM_Loader/README.md
index 75bf444cc2..68a1e5f2d0 100644
--- a/Examples/MAX32690/RV_ARM_Loader/README.md
+++ b/Examples/MAX32690/RV_ARM_Loader/README.md
@@ -8,7 +8,7 @@ RV_ARM_Loader runs on the ARM core to load the RISCV code space, setup the RISCV
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/RV_ARM_Loader/project.mk b/Examples/MAX32690/RV_ARM_Loader/project.mk
index 5e621347c3..08efab2773 100644
--- a/Examples/MAX32690/RV_ARM_Loader/project.mk
+++ b/Examples/MAX32690/RV_ARM_Loader/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32690/SCPA_OTP_Dump/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/SCPA_OTP_Dump/.vscode/README.md
+++ b/Examples/MAX32690/SCPA_OTP_Dump/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/SCPA_OTP_Dump/.vscode/settings.json b/Examples/MAX32690/SCPA_OTP_Dump/.vscode/settings.json
index 9583759826..71c1cea53d 100755
--- a/Examples/MAX32690/SCPA_OTP_Dump/.vscode/settings.json
+++ b/Examples/MAX32690/SCPA_OTP_Dump/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/SCPA_OTP_Dump/Makefile b/Examples/MAX32690/SCPA_OTP_Dump/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/SCPA_OTP_Dump/Makefile
+++ b/Examples/MAX32690/SCPA_OTP_Dump/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/SCPA_OTP_Dump/README.md b/Examples/MAX32690/SCPA_OTP_Dump/README.md
index 3e1ee66bb5..847bd3c932 100644
--- a/Examples/MAX32690/SCPA_OTP_Dump/README.md
+++ b/Examples/MAX32690/SCPA_OTP_Dump/README.md
@@ -17,7 +17,7 @@ PROJ_CFLAGS+=-DMAX32690_A1
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/SCPA_OTP_Dump/project.mk b/Examples/MAX32690/SCPA_OTP_Dump/project.mk
index 5533b04989..4f065a8032 100644
--- a/Examples/MAX32690/SCPA_OTP_Dump/project.mk
+++ b/Examples/MAX32690/SCPA_OTP_Dump/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/SPI/.vscode/README.md b/Examples/MAX32690/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/SPI/.vscode/README.md
+++ b/Examples/MAX32690/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/SPI/.vscode/settings.json b/Examples/MAX32690/SPI/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/SPI/.vscode/settings.json
+++ b/Examples/MAX32690/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/SPI/Makefile b/Examples/MAX32690/SPI/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/SPI/Makefile
+++ b/Examples/MAX32690/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/SPI/README.md b/Examples/MAX32690/SPI/README.md
index c4aaae37af..da09beed24 100644
--- a/Examples/MAX32690/SPI/README.md
+++ b/Examples/MAX32690/SPI/README.md
@@ -11,7 +11,7 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/SPI/project.mk b/Examples/MAX32690/SPI/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/SPI/project.mk
+++ b/Examples/MAX32690/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/TFT_Demo/.vscode/README.md b/Examples/MAX32690/TFT_Demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/TFT_Demo/.vscode/README.md
+++ b/Examples/MAX32690/TFT_Demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/TFT_Demo/.vscode/settings.json b/Examples/MAX32690/TFT_Demo/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/TFT_Demo/.vscode/settings.json
+++ b/Examples/MAX32690/TFT_Demo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/TFT_Demo/Makefile b/Examples/MAX32690/TFT_Demo/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/TFT_Demo/Makefile
+++ b/Examples/MAX32690/TFT_Demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/TFT_Demo/README.md b/Examples/MAX32690/TFT_Demo/README.md
index 35b7a38a14..fcef3214f7 100644
--- a/Examples/MAX32690/TFT_Demo/README.md
+++ b/Examples/MAX32690/TFT_Demo/README.md
@@ -8,7 +8,7 @@ The main functions which are shown in this example are displaying a bitmap image
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/TFT_Demo/project.mk b/Examples/MAX32690/TFT_Demo/project.mk
index 0bbb7d90d4..1a524a2037 100644
--- a/Examples/MAX32690/TFT_Demo/project.mk
+++ b/Examples/MAX32690/TFT_Demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX32690/TFT_Demo/resources/tft_demo/bmp/README.md b/Examples/MAX32690/TFT_Demo/resources/tft_demo/bmp/README.md
index 388bcc2174..b9be574f8a 100644
--- a/Examples/MAX32690/TFT_Demo/resources/tft_demo/bmp/README.md
+++ b/Examples/MAX32690/TFT_Demo/resources/tft_demo/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/TMR/.vscode/README.md b/Examples/MAX32690/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/TMR/.vscode/README.md
+++ b/Examples/MAX32690/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/TMR/.vscode/settings.json b/Examples/MAX32690/TMR/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/TMR/.vscode/settings.json
+++ b/Examples/MAX32690/TMR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/TMR/Makefile b/Examples/MAX32690/TMR/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/TMR/Makefile
+++ b/Examples/MAX32690/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/TMR/README.md b/Examples/MAX32690/TMR/README.md
index 6f9a5b262e..e23a0a20c4 100644
--- a/Examples/MAX32690/TMR/README.md
+++ b/Examples/MAX32690/TMR/README.md
@@ -14,7 +14,7 @@ Push SW2 to start the PWM and continuous timers initially. After the PWM and con
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/TMR/project.mk b/Examples/MAX32690/TMR/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/TMR/project.mk
+++ b/Examples/MAX32690/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/TRNG/.vscode/README.md b/Examples/MAX32690/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/TRNG/.vscode/README.md
+++ b/Examples/MAX32690/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/TRNG/.vscode/settings.json b/Examples/MAX32690/TRNG/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/TRNG/.vscode/settings.json
+++ b/Examples/MAX32690/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/TRNG/Makefile b/Examples/MAX32690/TRNG/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/TRNG/Makefile
+++ b/Examples/MAX32690/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/TRNG/README.md b/Examples/MAX32690/TRNG/README.md
index 28a6f84028..182ed7fcca 100644
--- a/Examples/MAX32690/TRNG/README.md
+++ b/Examples/MAX32690/TRNG/README.md
@@ -6,7 +6,7 @@ The true random number generator (TRNG) hardware is exercised in this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/TRNG/project.mk b/Examples/MAX32690/TRNG/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/TRNG/project.mk
+++ b/Examples/MAX32690/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Temp_Monitor/.vscode/README.md b/Examples/MAX32690/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX32690/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Temp_Monitor/.vscode/settings.json b/Examples/MAX32690/Temp_Monitor/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX32690/Temp_Monitor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Temp_Monitor/Makefile b/Examples/MAX32690/Temp_Monitor/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Temp_Monitor/Makefile
+++ b/Examples/MAX32690/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Temp_Monitor/README.md b/Examples/MAX32690/Temp_Monitor/README.md
index b21dd58d9b..1c93f03e4b 100644
--- a/Examples/MAX32690/Temp_Monitor/README.md
+++ b/Examples/MAX32690/Temp_Monitor/README.md
@@ -14,7 +14,7 @@ The temperature limits, flash storage page, and RTC time-of-day alarm period are
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Temp_Monitor/project.mk b/Examples/MAX32690/Temp_Monitor/project.mk
index afa282f40e..d150294659 100644
--- a/Examples/MAX32690/Temp_Monitor/project.mk
+++ b/Examples/MAX32690/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/UART/.vscode/README.md b/Examples/MAX32690/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/UART/.vscode/README.md
+++ b/Examples/MAX32690/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/UART/.vscode/settings.json b/Examples/MAX32690/UART/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/UART/.vscode/settings.json
+++ b/Examples/MAX32690/UART/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/UART/Makefile b/Examples/MAX32690/UART/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/UART/Makefile
+++ b/Examples/MAX32690/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/UART/README.md b/Examples/MAX32690/UART/README.md
index 7a9258e18d..9b4c17928e 100644
--- a/Examples/MAX32690/UART/README.md
+++ b/Examples/MAX32690/UART/README.md
@@ -6,7 +6,7 @@ This application uses two serial ports to send and receive data. One serial por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/UART/project.mk b/Examples/MAX32690/UART/project.mk
index f6484937c4..42b5536113 100644
--- a/Examples/MAX32690/UART/project.mk
+++ b/Examples/MAX32690/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/UCL/README.md b/Examples/MAX32690/UCL/README.md
index 108701ba5b..fd0fa2ce3b 100644
--- a/Examples/MAX32690/UCL/README.md
+++ b/Examples/MAX32690/UCL/README.md
@@ -6,7 +6,7 @@ UCL usecase example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/UCL/project.mk b/Examples/MAX32690/UCL/project.mk
index e0e2eca905..62c6aa45bf 100644
--- a/Examples/MAX32690/UCL/project.mk
+++ b/Examples/MAX32690/UCL/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/USB/USB_CDCACM/.vscode/README.md b/Examples/MAX32690/USB/USB_CDCACM/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/USB/USB_CDCACM/.vscode/README.md
+++ b/Examples/MAX32690/USB/USB_CDCACM/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/USB/USB_CDCACM/.vscode/settings.json b/Examples/MAX32690/USB/USB_CDCACM/.vscode/settings.json
index 8848ff5c00..0d29e091c6 100755
--- a/Examples/MAX32690/USB/USB_CDCACM/.vscode/settings.json
+++ b/Examples/MAX32690/USB/USB_CDCACM/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -67,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/USB/USB_CDCACM/Makefile b/Examples/MAX32690/USB/USB_CDCACM/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/USB/USB_CDCACM/Makefile
+++ b/Examples/MAX32690/USB/USB_CDCACM/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/USB/USB_CDCACM/README.md b/Examples/MAX32690/USB/USB_CDCACM/README.md
index f32ad53049..3299c14391 100644
--- a/Examples/MAX32690/USB/USB_CDCACM/README.md
+++ b/Examples/MAX32690/USB/USB_CDCACM/README.md
@@ -6,7 +6,7 @@ The example demonstartes the use of USB CDC-ACM driver class. After doing the re
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/USB/USB_CDCACM/project.mk b/Examples/MAX32690/USB/USB_CDCACM/project.mk
index 5148d3e8f1..582957930d 100644
--- a/Examples/MAX32690/USB/USB_CDCACM/project.mk
+++ b/Examples/MAX32690/USB/USB_CDCACM/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
+++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
index 8848ff5c00..0d29e091c6 100755
--- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
+++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -67,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/Makefile b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/Makefile
+++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/README.md b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/README.md
index c238e9356b..df473d269c 100644
--- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/README.md
+++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/README.md
@@ -6,7 +6,7 @@ The example demonstartes the use of USB composite device with Mass Storage drive
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/project.mk b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/project.mk
index 5148d3e8f1..582957930d 100644
--- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/project.mk
+++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
+++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
index 8848ff5c00..0d29e091c6 100755
--- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
+++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -67,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/Makefile b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/Makefile
+++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/README.md b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/README.md
index 21c65d1c9b..c2810c028d 100644
--- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/README.md
+++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/README.md
@@ -6,7 +6,7 @@ The example demonstartes the use of USB composite device with Mass Storage drive
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/project.mk b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/project.mk
index 5148d3e8f1..582957930d 100644
--- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/project.mk
+++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/README.md b/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/README.md
+++ b/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/settings.json b/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/settings.json
index 8848ff5c00..0d29e091c6 100755
--- a/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/settings.json
+++ b/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -67,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/USB/USB_HIDKeyboard/Makefile b/Examples/MAX32690/USB/USB_HIDKeyboard/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/USB/USB_HIDKeyboard/Makefile
+++ b/Examples/MAX32690/USB/USB_HIDKeyboard/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/USB/USB_HIDKeyboard/README.md b/Examples/MAX32690/USB/USB_HIDKeyboard/README.md
index 194146785e..8a45195a72 100644
--- a/Examples/MAX32690/USB/USB_HIDKeyboard/README.md
+++ b/Examples/MAX32690/USB/USB_HIDKeyboard/README.md
@@ -6,7 +6,7 @@ The example demonstartes the use of USB HID driver class. After doing the requir
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/USB/USB_HIDKeyboard/project.mk b/Examples/MAX32690/USB/USB_HIDKeyboard/project.mk
index 5148d3e8f1..582957930d 100644
--- a/Examples/MAX32690/USB/USB_HIDKeyboard/project.mk
+++ b/Examples/MAX32690/USB/USB_HIDKeyboard/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/USB/USB_MassStorage/.vscode/README.md b/Examples/MAX32690/USB/USB_MassStorage/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/USB/USB_MassStorage/.vscode/README.md
+++ b/Examples/MAX32690/USB/USB_MassStorage/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/USB/USB_MassStorage/.vscode/settings.json b/Examples/MAX32690/USB/USB_MassStorage/.vscode/settings.json
index 8848ff5c00..0d29e091c6 100755
--- a/Examples/MAX32690/USB/USB_MassStorage/.vscode/settings.json
+++ b/Examples/MAX32690/USB/USB_MassStorage/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -67,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/USB/USB_MassStorage/Makefile b/Examples/MAX32690/USB/USB_MassStorage/Makefile
index e8faacef51..082a6783d2 100644
--- a/Examples/MAX32690/USB/USB_MassStorage/Makefile
+++ b/Examples/MAX32690/USB/USB_MassStorage/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/USB/USB_MassStorage/README.md b/Examples/MAX32690/USB/USB_MassStorage/README.md
index 2fe438e5ef..cdd0e84de9 100644
--- a/Examples/MAX32690/USB/USB_MassStorage/README.md
+++ b/Examples/MAX32690/USB/USB_MassStorage/README.md
@@ -6,7 +6,7 @@ The example demonstates the use of USB Mass Storage driver class. After doing th
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/USB/USB_MassStorage/project.mk b/Examples/MAX32690/USB/USB_MassStorage/project.mk
index 5148d3e8f1..582957930d 100644
--- a/Examples/MAX32690/USB/USB_MassStorage/project.mk
+++ b/Examples/MAX32690/USB/USB_MassStorage/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/WUT/.vscode/README.md b/Examples/MAX32690/WUT/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/WUT/.vscode/README.md
+++ b/Examples/MAX32690/WUT/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/WUT/.vscode/settings.json b/Examples/MAX32690/WUT/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/WUT/.vscode/settings.json
+++ b/Examples/MAX32690/WUT/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/WUT/Makefile b/Examples/MAX32690/WUT/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/WUT/Makefile
+++ b/Examples/MAX32690/WUT/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/WUT/README.md b/Examples/MAX32690/WUT/README.md
index 7cd337317e..a0841eac32 100644
--- a/Examples/MAX32690/WUT/README.md
+++ b/Examples/MAX32690/WUT/README.md
@@ -5,7 +5,7 @@ This example shows how to wake up a device with the wakeup timer. Pressing SW2 (
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/WUT/project.mk b/Examples/MAX32690/WUT/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/WUT/project.mk
+++ b/Examples/MAX32690/WUT/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/Watchdog/.vscode/README.md b/Examples/MAX32690/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/Watchdog/.vscode/README.md
+++ b/Examples/MAX32690/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/Watchdog/.vscode/settings.json b/Examples/MAX32690/Watchdog/.vscode/settings.json
index 261356c246..7104d63a20 100755
--- a/Examples/MAX32690/Watchdog/.vscode/settings.json
+++ b/Examples/MAX32690/Watchdog/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/Watchdog/Makefile b/Examples/MAX32690/Watchdog/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/Watchdog/Makefile
+++ b/Examples/MAX32690/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/Watchdog/README.md b/Examples/MAX32690/Watchdog/README.md
index 70290f7585..d9c31d784f 100644
--- a/Examples/MAX32690/Watchdog/README.md
+++ b/Examples/MAX32690/Watchdog/README.md
@@ -13,7 +13,7 @@ On feather board, SW3 is used instead of SW2.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/Watchdog/project.mk b/Examples/MAX32690/Watchdog/project.mk
index 1e13ccbee8..96eb02eae1 100644
--- a/Examples/MAX32690/Watchdog/project.mk
+++ b/Examples/MAX32690/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX32690/WearLeveling/.vscode/README.md b/Examples/MAX32690/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX32690/WearLeveling/.vscode/README.md
+++ b/Examples/MAX32690/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX32690/WearLeveling/.vscode/settings.json b/Examples/MAX32690/WearLeveling/.vscode/settings.json
index b870a3fef2..8bea75f671 100755
--- a/Examples/MAX32690/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX32690/WearLeveling/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX32690/WearLeveling/Makefile b/Examples/MAX32690/WearLeveling/Makefile
index ebd2a80879..ee93baee4d 100644
--- a/Examples/MAX32690/WearLeveling/Makefile
+++ b/Examples/MAX32690/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX32690/WearLeveling/README.md b/Examples/MAX32690/WearLeveling/README.md
index 3a6d371adc..aa2d60127d 100644
--- a/Examples/MAX32690/WearLeveling/README.md
+++ b/Examples/MAX32690/WearLeveling/README.md
@@ -15,7 +15,7 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX32690/WearLeveling/project.mk b/Examples/MAX32690/WearLeveling/project.mk
index 1cd2244f45..3137986a32 100644
--- a/Examples/MAX32690/WearLeveling/project.mk
+++ b/Examples/MAX32690/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ADC/.vscode/README.md b/Examples/MAX78000/ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ADC/.vscode/README.md
+++ b/Examples/MAX78000/ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ADC/.vscode/settings.json b/Examples/MAX78000/ADC/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/ADC/.vscode/settings.json
+++ b/Examples/MAX78000/ADC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ADC/Makefile b/Examples/MAX78000/ADC/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/ADC/Makefile
+++ b/Examples/MAX78000/ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ADC/README.md b/Examples/MAX78000/ADC/README.md
index 9afb49c2ba..7acc54f746 100644
--- a/Examples/MAX78000/ADC/README.md
+++ b/Examples/MAX78000/ADC/README.md
@@ -10,11 +10,11 @@ Any reading that exceeds the full-scale value of the ADC will have an '*' append
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX78000/ADC/project.mk b/Examples/MAX78000/ADC/project.mk
index c5d422ccac..4a8c859560 100644
--- a/Examples/MAX78000/ADC/project.mk
+++ b/Examples/MAX78000/ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/AES/.vscode/README.md b/Examples/MAX78000/AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/AES/.vscode/README.md
+++ b/Examples/MAX78000/AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/AES/.vscode/settings.json b/Examples/MAX78000/AES/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/AES/.vscode/settings.json
+++ b/Examples/MAX78000/AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/AES/Makefile b/Examples/MAX78000/AES/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/AES/Makefile
+++ b/Examples/MAX78000/AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/AES/README.md b/Examples/MAX78000/AES/README.md
index c9c9edc308..52d3709722 100644
--- a/Examples/MAX78000/AES/README.md
+++ b/Examples/MAX78000/AES/README.md
@@ -6,11 +6,11 @@ This application demonstrates both encryption and decryption using AES. A block
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
If using the MAX78000EVKIT (EvKit_V1):
diff --git a/Examples/MAX78000/AES/project.mk b/Examples/MAX78000/AES/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/AES/project.mk
+++ b/Examples/MAX78000/AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/README.md b/Examples/MAX78000/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX78000/ARM-DSP/README.md
+++ b/Examples/MAX78000/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_bayes_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_bayes_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_convolution_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_convolution_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_fir_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_fir_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_matrix_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_matrix_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_svm_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_svm_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/settings.json
index 7c0896645c..7e111a4de3 100755
--- a/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX78000/ARM-DSP/arm_variance_example/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX78000/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX78000/ARM-DSP/arm_variance_example/project.mk
index e7d27b7b63..194e63d513 100644
--- a/Examples/MAX78000/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX78000/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/UNet-demo/.vscode/README.md b/Examples/MAX78000/CNN/UNet-demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/UNet-demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/UNet-demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/UNet-demo/.vscode/settings.json b/Examples/MAX78000/CNN/UNet-demo/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/CNN/UNet-demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/UNet-demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/UNet-demo/Makefile b/Examples/MAX78000/CNN/UNet-demo/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/UNet-demo/Makefile
+++ b/Examples/MAX78000/CNN/UNet-demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/UNet-demo/README.md b/Examples/MAX78000/CNN/UNet-demo/README.md
index 033d769f4c..63fc46469e 100644
--- a/Examples/MAX78000/CNN/UNet-demo/README.md
+++ b/Examples/MAX78000/CNN/UNet-demo/README.md
@@ -16,11 +16,11 @@ This demo shows a U-Net network, trained to segment images into four categories
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
* Before building the firmware, please make sure to enable your intended mode of operation by enabling/disabling the following defines in [main.c](main.c):
diff --git a/Examples/MAX78000/CNN/UNet-demo/TFT/fthr/bmp/README.md b/Examples/MAX78000/CNN/UNet-demo/TFT/fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/CNN/UNet-demo/TFT/fthr/bmp/README.md
+++ b/Examples/MAX78000/CNN/UNet-demo/TFT/fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/UNet-demo/Utility/README.md b/Examples/MAX78000/CNN/UNet-demo/Utility/README.md
index 6be7600ed7..015cc1f4ef 100644
--- a/Examples/MAX78000/CNN/UNet-demo/Utility/README.md
+++ b/Examples/MAX78000/CNN/UNet-demo/Utility/README.md
@@ -65,7 +65,7 @@ The image is expected to be 80 by 80, or it will be resized. The EVKIT will show
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/UNet-demo/project.mk b/Examples/MAX78000/CNN/UNet-demo/project.mk
index c406c1012d..13d03b3b6f 100644
--- a/Examples/MAX78000/CNN/UNet-demo/project.mk
+++ b/Examples/MAX78000/CNN/UNet-demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/README.md b/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/settings.json b/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/UNet-highres-demo/Makefile b/Examples/MAX78000/CNN/UNet-highres-demo/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/UNet-highres-demo/Makefile
+++ b/Examples/MAX78000/CNN/UNet-highres-demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/UNet-highres-demo/README.md b/Examples/MAX78000/CNN/UNet-highres-demo/README.md
index 365d5df3af..96426f3404 100644
--- a/Examples/MAX78000/CNN/UNet-highres-demo/README.md
+++ b/Examples/MAX78000/CNN/UNet-highres-demo/README.md
@@ -16,11 +16,11 @@ This demo shows a UNet network with 352x352 resolution input, trained to segment
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
* Before building the firmware, please make sure to enable your intended mode of operation by enabling/disabling the following define in [main.c](main.c):
diff --git a/Examples/MAX78000/CNN/UNet-highres-demo/TFT/fthr/bmp/README.md b/Examples/MAX78000/CNN/UNet-highres-demo/TFT/fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/CNN/UNet-highres-demo/TFT/fthr/bmp/README.md
+++ b/Examples/MAX78000/CNN/UNet-highres-demo/TFT/fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/UNet-highres-demo/Utility/README.md b/Examples/MAX78000/CNN/UNet-highres-demo/Utility/README.md
index 320f54263b..432b2f7023 100644
--- a/Examples/MAX78000/CNN/UNet-highres-demo/Utility/README.md
+++ b/Examples/MAX78000/CNN/UNet-highres-demo/Utility/README.md
@@ -10,7 +10,7 @@ segmentation mask
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/UNet-highres-demo/project.mk b/Examples/MAX78000/CNN/UNet-highres-demo/project.mk
index 3e4208ecb8..bb5f742fc9 100644
--- a/Examples/MAX78000/CNN/UNet-highres-demo/project.mk
+++ b/Examples/MAX78000/CNN/UNet-highres-demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/README.md b/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/settings.json b/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/settings.json
index c8718a8d1d..b0d2572064 100755
--- a/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/actionrecognition-demo/Makefile b/Examples/MAX78000/CNN/actionrecognition-demo/Makefile
index 8313ed33fe..a9913315a3 100644
--- a/Examples/MAX78000/CNN/actionrecognition-demo/Makefile
+++ b/Examples/MAX78000/CNN/actionrecognition-demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/actionrecognition-demo/README.md b/Examples/MAX78000/CNN/actionrecognition-demo/README.md
index bfddf779b3..823aef9af7 100644
--- a/Examples/MAX78000/CNN/actionrecognition-demo/README.md
+++ b/Examples/MAX78000/CNN/actionrecognition-demo/README.md
@@ -10,7 +10,7 @@ The model is trained using the [Kinetics Human Action Video Dataset](https://res
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/README.md b/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/settings.json b/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/aisegment_unet-demo/Makefile b/Examples/MAX78000/CNN/aisegment_unet-demo/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/aisegment_unet-demo/Makefile
+++ b/Examples/MAX78000/CNN/aisegment_unet-demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/aisegment_unet-demo/README.md b/Examples/MAX78000/CNN/aisegment_unet-demo/README.md
index c8934ce2bd..2e8aba3a3b 100644
--- a/Examples/MAX78000/CNN/aisegment_unet-demo/README.md
+++ b/Examples/MAX78000/CNN/aisegment_unet-demo/README.md
@@ -14,7 +14,7 @@ This demo shows a UNet network with 352x352 resolution input, trained to segment
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/aisegment_unet-demo/TFT/fthr/bmp/README.md b/Examples/MAX78000/CNN/aisegment_unet-demo/TFT/fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/CNN/aisegment_unet-demo/TFT/fthr/bmp/README.md
+++ b/Examples/MAX78000/CNN/aisegment_unet-demo/TFT/fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/aisegment_unet-demo/Utility/README.md b/Examples/MAX78000/CNN/aisegment_unet-demo/Utility/README.md
index 67155f8147..a7fce2f4f6 100644
--- a/Examples/MAX78000/CNN/aisegment_unet-demo/Utility/README.md
+++ b/Examples/MAX78000/CNN/aisegment_unet-demo/Utility/README.md
@@ -10,7 +10,7 @@ segmentation mask
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/aisegment_unet-demo/project.mk b/Examples/MAX78000/CNN/aisegment_unet-demo/project.mk
index b24be96f86..6ac30a7fa0 100644
--- a/Examples/MAX78000/CNN/aisegment_unet-demo/project.mk
+++ b/Examples/MAX78000/CNN/aisegment_unet-demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/aisegment_unet/.vscode/README.md b/Examples/MAX78000/CNN/aisegment_unet/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/aisegment_unet/.vscode/README.md
+++ b/Examples/MAX78000/CNN/aisegment_unet/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/aisegment_unet/.vscode/settings.json b/Examples/MAX78000/CNN/aisegment_unet/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/aisegment_unet/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/aisegment_unet/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/aisegment_unet/Makefile b/Examples/MAX78000/CNN/aisegment_unet/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/aisegment_unet/Makefile
+++ b/Examples/MAX78000/CNN/aisegment_unet/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/aisegment_unet/project.mk b/Examples/MAX78000/CNN/aisegment_unet/project.mk
index c5d422ccac..4a8c859560 100644
--- a/Examples/MAX78000/CNN/aisegment_unet/project.mk
+++ b/Examples/MAX78000/CNN/aisegment_unet/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/asl/.vscode/README.md b/Examples/MAX78000/CNN/asl/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/asl/.vscode/README.md
+++ b/Examples/MAX78000/CNN/asl/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/asl/.vscode/settings.json b/Examples/MAX78000/CNN/asl/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/asl/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/asl/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/asl/Makefile b/Examples/MAX78000/CNN/asl/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/asl/Makefile
+++ b/Examples/MAX78000/CNN/asl/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/asl/project.mk b/Examples/MAX78000/CNN/asl/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/asl/project.mk
+++ b/Examples/MAX78000/CNN/asl/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/asl_demo/.vscode/README.md b/Examples/MAX78000/CNN/asl_demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/asl_demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/asl_demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/asl_demo/.vscode/settings.json b/Examples/MAX78000/CNN/asl_demo/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/CNN/asl_demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/asl_demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/asl_demo/Makefile b/Examples/MAX78000/CNN/asl_demo/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/asl_demo/Makefile
+++ b/Examples/MAX78000/CNN/asl_demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/asl_demo/README.md b/Examples/MAX78000/CNN/asl_demo/README.md
index efcf45f2c1..3f5df35492 100644
--- a/Examples/MAX78000/CNN/asl_demo/README.md
+++ b/Examples/MAX78000/CNN/asl_demo/README.md
@@ -18,11 +18,11 @@ In the demo, “empty” represents blank images missing hand symbols.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
* This project supports output to a TFT display.
* For the MAX78000EVKIT, the TFT display is **enabled** by default. It can be _disabled_ by commenting out `#define TFT_ENABLE` in [example_config.h](example_config.h).
diff --git a/Examples/MAX78000/CNN/asl_demo/TFT/fthr/bmp/README.md b/Examples/MAX78000/CNN/asl_demo/TFT/fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/CNN/asl_demo/TFT/fthr/bmp/README.md
+++ b/Examples/MAX78000/CNN/asl_demo/TFT/fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/asl_demo/project.mk b/Examples/MAX78000/CNN/asl_demo/project.mk
index a5ebf80892..e626b5e633 100644
--- a/Examples/MAX78000/CNN/asl_demo/project.mk
+++ b/Examples/MAX78000/CNN/asl_demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/README.md b/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/settings.json b/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/settings.json
index e090729d9e..8cec77404e 100755
--- a/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/cam01_facedetect_demo/Makefile b/Examples/MAX78000/CNN/cam01_facedetect_demo/Makefile
index d896932724..c6fdc22719 100644
--- a/Examples/MAX78000/CNN/cam01_facedetect_demo/Makefile
+++ b/Examples/MAX78000/CNN/cam01_facedetect_demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/cam01_facedetect_demo/README.md b/Examples/MAX78000/CNN/cam01_facedetect_demo/README.md
index 8a2309606d..cd598645cc 100644
--- a/Examples/MAX78000/CNN/cam01_facedetect_demo/README.md
+++ b/Examples/MAX78000/CNN/cam01_facedetect_demo/README.md
@@ -6,7 +6,7 @@ This project demonstrates object detection running on the MAX78000CAM01 board.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/cam01_facedetect_demo/project.mk b/Examples/MAX78000/CNN/cam01_facedetect_demo/project.mk
index 62e06d2334..c04542b04e 100644
--- a/Examples/MAX78000/CNN/cam01_facedetect_demo/project.mk
+++ b/Examples/MAX78000/CNN/cam01_facedetect_demo/project.mk
@@ -14,5 +14,5 @@ CAMERA = HM0360_COLOR
BOARD = CAM01_RevA
ifneq ($(BOARD),CAM01_RevA)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX78000CAM01 board. (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages))
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX78000CAM01 board. (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages))
endif
diff --git a/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/README.md b/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/README.md
index 58733e941c..90fbcefc65 100644
--- a/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/settings.json b/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/settings.json
index fdaa9e0cfc..d1bdf7f052 100755
--- a/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/cam02_facedetect_demo/Makefile b/Examples/MAX78000/CNN/cam02_facedetect_demo/Makefile
index af3c754cb1..333beef8fc 100644
--- a/Examples/MAX78000/CNN/cam02_facedetect_demo/Makefile
+++ b/Examples/MAX78000/CNN/cam02_facedetect_demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/cam02_facedetect_demo/README.md b/Examples/MAX78000/CNN/cam02_facedetect_demo/README.md
index 9e67d99299..31f95d0905 100644
--- a/Examples/MAX78000/CNN/cam02_facedetect_demo/README.md
+++ b/Examples/MAX78000/CNN/cam02_facedetect_demo/README.md
@@ -6,7 +6,7 @@ This project demonstrates object detection running on the MAX78000CAM02 board.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/cam02_facedetect_demo/project.mk b/Examples/MAX78000/CNN/cam02_facedetect_demo/project.mk
index 42c1e87211..377b5830bf 100644
--- a/Examples/MAX78000/CNN/cam02_facedetect_demo/project.mk
+++ b/Examples/MAX78000/CNN/cam02_facedetect_demo/project.mk
@@ -12,5 +12,5 @@
BOARD = CAM02_RevA
ifneq ($(BOARD),CAM02_RevA)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX78000CAM02 board. (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages))
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX78000CAM02 board. (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages))
endif
diff --git a/Examples/MAX78000/CNN/camvid_unet/.vscode/README.md b/Examples/MAX78000/CNN/camvid_unet/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/camvid_unet/.vscode/README.md
+++ b/Examples/MAX78000/CNN/camvid_unet/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/camvid_unet/.vscode/settings.json b/Examples/MAX78000/CNN/camvid_unet/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/camvid_unet/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/camvid_unet/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/camvid_unet/Makefile b/Examples/MAX78000/CNN/camvid_unet/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/camvid_unet/Makefile
+++ b/Examples/MAX78000/CNN/camvid_unet/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/camvid_unet/project.mk b/Examples/MAX78000/CNN/camvid_unet/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/camvid_unet/project.mk
+++ b/Examples/MAX78000/CNN/camvid_unet/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/cats-dogs/.vscode/README.md b/Examples/MAX78000/CNN/cats-dogs/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/cats-dogs/.vscode/README.md
+++ b/Examples/MAX78000/CNN/cats-dogs/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/cats-dogs/.vscode/settings.json b/Examples/MAX78000/CNN/cats-dogs/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/cats-dogs/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/cats-dogs/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/cats-dogs/Makefile b/Examples/MAX78000/CNN/cats-dogs/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/cats-dogs/Makefile
+++ b/Examples/MAX78000/CNN/cats-dogs/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/cats-dogs/project.mk b/Examples/MAX78000/CNN/cats-dogs/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/cats-dogs/project.mk
+++ b/Examples/MAX78000/CNN/cats-dogs/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/README.md b/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/settings.json b/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/cats-dogs_demo/Makefile b/Examples/MAX78000/CNN/cats-dogs_demo/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/cats-dogs_demo/Makefile
+++ b/Examples/MAX78000/CNN/cats-dogs_demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/cats-dogs_demo/README.md b/Examples/MAX78000/CNN/cats-dogs_demo/README.md
index e44734b499..53f90da75e 100644
--- a/Examples/MAX78000/CNN/cats-dogs_demo/README.md
+++ b/Examples/MAX78000/CNN/cats-dogs_demo/README.md
@@ -13,11 +13,11 @@ The code uses a sampledata header (sampledata.h) file to test a pre-defined inpu
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
* This project supports output to a TFT display. When building for the MAX78000EVKIT, the display is **enabled** by default.
* To _disable_ the TFT display code, comment out `PROJ_CFLAGS += -DTFT_ENABLE` in [project.mk](project.mk)
diff --git a/Examples/MAX78000/CNN/cats-dogs_demo/TFT/fthr/bmp/README.md b/Examples/MAX78000/CNN/cats-dogs_demo/TFT/fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/CNN/cats-dogs_demo/TFT/fthr/bmp/README.md
+++ b/Examples/MAX78000/CNN/cats-dogs_demo/TFT/fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/cats-dogs_demo/project.mk b/Examples/MAX78000/CNN/cats-dogs_demo/project.mk
index f19dcdab88..3866379ae2 100644
--- a/Examples/MAX78000/CNN/cats-dogs_demo/project.mk
+++ b/Examples/MAX78000/CNN/cats-dogs_demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/README.md b/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/README.md
+++ b/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/settings.json b/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/cifar-10-auto-test/Makefile b/Examples/MAX78000/CNN/cifar-10-auto-test/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/cifar-10-auto-test/Makefile
+++ b/Examples/MAX78000/CNN/cifar-10-auto-test/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/cifar-10-auto-test/README.md b/Examples/MAX78000/CNN/cifar-10-auto-test/README.md
index 96238ad4c3..08541120ef 100644
--- a/Examples/MAX78000/CNN/cifar-10-auto-test/README.md
+++ b/Examples/MAX78000/CNN/cifar-10-auto-test/README.md
@@ -6,11 +6,11 @@ This project is based on the CIFAR-10 example. Where the original example perfo
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/CNN/cifar-10-auto-test/cifar-10-png-loader/README.md b/Examples/MAX78000/CNN/cifar-10-auto-test/cifar-10-png-loader/README.md
index 205a103e4c..032c7d2aee 100644
--- a/Examples/MAX78000/CNN/cifar-10-auto-test/cifar-10-png-loader/README.md
+++ b/Examples/MAX78000/CNN/cifar-10-auto-test/cifar-10-png-loader/README.md
@@ -103,7 +103,7 @@ airplane4.png Class:0
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/cifar-10-auto-test/project.mk b/Examples/MAX78000/CNN/cifar-10-auto-test/project.mk
index c5d422ccac..4a8c859560 100644
--- a/Examples/MAX78000/CNN/cifar-10-auto-test/project.mk
+++ b/Examples/MAX78000/CNN/cifar-10-auto-test/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/cifar-10/.vscode/README.md b/Examples/MAX78000/CNN/cifar-10/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/cifar-10/.vscode/README.md
+++ b/Examples/MAX78000/CNN/cifar-10/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/cifar-10/.vscode/settings.json b/Examples/MAX78000/CNN/cifar-10/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/cifar-10/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/cifar-10/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/cifar-10/Makefile b/Examples/MAX78000/CNN/cifar-10/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/cifar-10/Makefile
+++ b/Examples/MAX78000/CNN/cifar-10/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/cifar-10/README.md b/Examples/MAX78000/CNN/cifar-10/README.md
index edee6201da..aed03703c9 100644
--- a/Examples/MAX78000/CNN/cifar-10/README.md
+++ b/Examples/MAX78000/CNN/cifar-10/README.md
@@ -10,11 +10,11 @@ output in the near future.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/CNN/cifar-10/project.mk b/Examples/MAX78000/CNN/cifar-10/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/cifar-10/project.mk
+++ b/Examples/MAX78000/CNN/cifar-10/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/README.md b/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/README.md
+++ b/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/settings.json b/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/cifar-100-mixed/Makefile b/Examples/MAX78000/CNN/cifar-100-mixed/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/cifar-100-mixed/Makefile
+++ b/Examples/MAX78000/CNN/cifar-100-mixed/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/cifar-100-mixed/project.mk b/Examples/MAX78000/CNN/cifar-100-mixed/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/cifar-100-mixed/project.mk
+++ b/Examples/MAX78000/CNN/cifar-100-mixed/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/cifar-100-residual/.vscode/README.md b/Examples/MAX78000/CNN/cifar-100-residual/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/cifar-100-residual/.vscode/README.md
+++ b/Examples/MAX78000/CNN/cifar-100-residual/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/cifar-100-residual/.vscode/settings.json b/Examples/MAX78000/CNN/cifar-100-residual/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/cifar-100-residual/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/cifar-100-residual/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/cifar-100-residual/Makefile b/Examples/MAX78000/CNN/cifar-100-residual/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/cifar-100-residual/Makefile
+++ b/Examples/MAX78000/CNN/cifar-100-residual/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/cifar-100-residual/project.mk b/Examples/MAX78000/CNN/cifar-100-residual/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/cifar-100-residual/project.mk
+++ b/Examples/MAX78000/CNN/cifar-100-residual/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/README.md b/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/README.md
+++ b/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/settings.json b/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/Makefile b/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/Makefile
+++ b/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/project.mk b/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/project.mk
+++ b/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/cifar-100/.vscode/README.md b/Examples/MAX78000/CNN/cifar-100/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/cifar-100/.vscode/README.md
+++ b/Examples/MAX78000/CNN/cifar-100/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/cifar-100/.vscode/settings.json b/Examples/MAX78000/CNN/cifar-100/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/cifar-100/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/cifar-100/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/cifar-100/Makefile b/Examples/MAX78000/CNN/cifar-100/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/cifar-100/Makefile
+++ b/Examples/MAX78000/CNN/cifar-100/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/cifar-100/README.md b/Examples/MAX78000/CNN/cifar-100/README.md
index 4f834bafe7..57dfe412a5 100644
--- a/Examples/MAX78000/CNN/cifar-100/README.md
+++ b/Examples/MAX78000/CNN/cifar-100/README.md
@@ -10,11 +10,11 @@ output in the near future.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/CNN/cifar-100/project.mk b/Examples/MAX78000/CNN/cifar-100/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/cifar-100/project.mk
+++ b/Examples/MAX78000/CNN/cifar-100/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/digit-detection-demo/.vscode/README.md b/Examples/MAX78000/CNN/digit-detection-demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/digit-detection-demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/digit-detection-demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/digit-detection-demo/.vscode/settings.json b/Examples/MAX78000/CNN/digit-detection-demo/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/CNN/digit-detection-demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/digit-detection-demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/digit-detection-demo/Makefile b/Examples/MAX78000/CNN/digit-detection-demo/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/digit-detection-demo/Makefile
+++ b/Examples/MAX78000/CNN/digit-detection-demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/digit-detection-demo/README.md b/Examples/MAX78000/CNN/digit-detection-demo/README.md
index f0d5cc93d2..717c6eb143 100644
--- a/Examples/MAX78000/CNN/digit-detection-demo/README.md
+++ b/Examples/MAX78000/CNN/digit-detection-demo/README.md
@@ -13,11 +13,11 @@ The image input size is 74x74 pixels RGB which is 74x74x3 in HWC format.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
* By default, this project is configured for [camera mode](#camera-mode). It can be configured for [offline mode](#offline-mode) in [example_config.h](example_config.h) by defining `USE_SAMPLE_DATA`.
diff --git a/Examples/MAX78000/CNN/digit-detection-demo/TFT/fthr/bmp/README.md b/Examples/MAX78000/CNN/digit-detection-demo/TFT/fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/CNN/digit-detection-demo/TFT/fthr/bmp/README.md
+++ b/Examples/MAX78000/CNN/digit-detection-demo/TFT/fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/digit-detection-demo/project.mk b/Examples/MAX78000/CNN/digit-detection-demo/project.mk
index c209e5bc47..3b619f8cf4 100644
--- a/Examples/MAX78000/CNN/digit-detection-demo/project.mk
+++ b/Examples/MAX78000/CNN/digit-detection-demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/faceid_112/.vscode/README.md b/Examples/MAX78000/CNN/faceid_112/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/faceid_112/.vscode/README.md
+++ b/Examples/MAX78000/CNN/faceid_112/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/faceid_112/.vscode/settings.json b/Examples/MAX78000/CNN/faceid_112/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/faceid_112/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/faceid_112/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/faceid_112/Makefile b/Examples/MAX78000/CNN/faceid_112/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/faceid_112/Makefile
+++ b/Examples/MAX78000/CNN/faceid_112/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/facial_recognition/.cproject b/Examples/MAX78000/CNN/facial_recognition/.cproject
index d23daa8060..698178a43b 100644
--- a/Examples/MAX78000/CNN/facial_recognition/.cproject
+++ b/Examples/MAX78000/CNN/facial_recognition/.cproject
@@ -35,8 +35,6 @@
-
-
diff --git a/Examples/MAX78000/CNN/facial_recognition/.vscode/README.md b/Examples/MAX78000/CNN/facial_recognition/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/facial_recognition/.vscode/README.md
+++ b/Examples/MAX78000/CNN/facial_recognition/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/facial_recognition/.vscode/settings.json b/Examples/MAX78000/CNN/facial_recognition/.vscode/settings.json
index df9e81f0af..972c5fad40 100755
--- a/Examples/MAX78000/CNN/facial_recognition/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/facial_recognition/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,9 +57,6 @@
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/Core/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include/dsp",
- "${config:MAXIM_PATH}/Libraries/SDHC/Include",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -69,14 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/facial_recognition/Makefile b/Examples/MAX78000/CNN/facial_recognition/Makefile
index 8313ed33fe..a9913315a3 100644
--- a/Examples/MAX78000/CNN/facial_recognition/Makefile
+++ b/Examples/MAX78000/CNN/facial_recognition/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/facial_recognition/README.md b/Examples/MAX78000/CNN/facial_recognition/README.md
index 70ec9b4fa6..ca8f33954a 100644
--- a/Examples/MAX78000/CNN/facial_recognition/README.md
+++ b/Examples/MAX78000/CNN/facial_recognition/README.md
@@ -20,7 +20,7 @@ Alternatively, the [SDHC_weights](SDHC_weights) sub-project can be used to load
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.cproject b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.cproject
index 27fbf5c947..48c00d661c 100644
--- a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.cproject
+++ b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.cproject
@@ -32,8 +32,7 @@
-
-
+
diff --git a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/README.md b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/README.md
+++ b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/settings.json b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/settings.json
index c854893837..c492042493 100755
--- a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/settings.json
@@ -48,13 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/SDHC/Include",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source"
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen"
],
"C_Cpp.default.browse.path": [
"${workspaceFolder}",
@@ -63,12 +62,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source"
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers"
],
"C_Cpp.default.defines": [
diff --git a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/Makefile b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/Makefile
index ed9cf6b56d..d281b0c18b 100644
--- a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/Makefile
+++ b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/README.md b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/README.md
index 8e4b0ef4cf..fae3081143 100644
--- a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/README.md
+++ b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/README.md
@@ -10,7 +10,7 @@ Once loaded, the SD card is ready for use with the [facial_recognition](../READM
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/main.c b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/main.c
index 885225de0b..ee8caa88e3 100644
--- a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/main.c
+++ b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/main.c
@@ -126,7 +126,9 @@ int formatSDHC()
printf("FORMATTING DRIVE\n");
- if ((err = f_mkfs("", FM_ANY, 0, work, sizeof(work))) !=
+ MKFS_PARM format_options = { .fmt = FM_FAT32 };
+
+ if ((err = f_mkfs("", &format_options, work, sizeof(work))) !=
FR_OK) { //Format the default drive to FAT32
printf("Error formatting SD card: %s\n", FF_ERRORS[err]);
} else {
@@ -580,8 +582,7 @@ int main(void)
if ((err = f_open(&file, "weights_2.bin", FA_CREATE_ALWAYS | FA_WRITE)) != FR_OK) {
printf("ERROR opening file: %s\n", FF_ERRORS[err]);
f_mount(NULL, "", 0);
- while (1)
- ;
+ while (1) {}
}
printf("Opened file 'weights_2.bin'\n");
@@ -595,8 +596,7 @@ int main(void)
if ((err = f_write(&file, wr_ptr, write_size, &bytes_written)) != FR_OK) {
printf("ERROR writing file %d: %s\n", i, FF_ERRORS[err]);
f_mount(NULL, "", 0);
- while (1)
- ;
+ while (1) {}
}
// Calculate residual bytes
@@ -615,16 +615,14 @@ int main(void)
if ((err = f_close(&file)) != FR_OK) {
printf("ERROR closing file: %s\n", FF_ERRORS[err]);
f_mount(NULL, "", 0);
- while (1)
- ;
+ while (1) {}
}
printf("File Closed\n");
if ((err = f_mount(NULL, "", 0)) != FR_OK) {
printf("ERROR unmounting volume: %s\n", FF_ERRORS[err]);
- while (1)
- ;
+ while (1) {}
}
printf("SD Unmonted\n");
diff --git a/Examples/MAX78000/CNN/facial_recognition/include/ffconf.h b/Examples/MAX78000/CNN/facial_recognition/include/ffconf.h
new file mode 100644
index 0000000000..35d9e58ea0
--- /dev/null
+++ b/Examples/MAX78000/CNN/facial_recognition/include/ffconf.h
@@ -0,0 +1,296 @@
+/*---------------------------------------------------------------------------/
+/ Configurations of FatFs Module
+/---------------------------------------------------------------------------*/
+
+#define FFCONF_DEF 80286 /* Revision ID */
+
+/*---------------------------------------------------------------------------/
+/ Function Configurations
+/---------------------------------------------------------------------------*/
+
+#define FF_FS_READONLY 0
+/* This option switches read-only configuration. (0:Read/Write or 1:Read-only)
+/ Read-only configuration removes writing API functions, f_write(), f_sync(),
+/ f_unlink(), f_mkdir(), f_chmod(), f_rename(), f_truncate(), f_getfree()
+/ and optional writing functions as well. */
+
+
+#define FF_FS_MINIMIZE 0
+/* This option defines minimization level to remove some basic API functions.
+/
+/ 0: Basic functions are fully enabled.
+/ 1: f_stat(), f_getfree(), f_unlink(), f_mkdir(), f_truncate() and f_rename()
+/ are removed.
+/ 2: f_opendir(), f_readdir() and f_closedir() are removed in addition to 1.
+/ 3: f_lseek() function is removed in addition to 2. */
+
+
+#define FF_USE_FIND 0
+/* This option switches filtered directory read functions, f_findfirst() and
+/ f_findnext(). (0:Disable, 1:Enable 2:Enable with matching altname[] too) */
+
+
+#define FF_USE_MKFS 1
+/* This option switches f_mkfs() function. (0:Disable or 1:Enable) */
+
+
+#define FF_USE_FASTSEEK 0
+/* This option switches fast seek function. (0:Disable or 1:Enable) */
+
+
+#define FF_USE_EXPAND 0
+/* This option switches f_expand function. (0:Disable or 1:Enable) */
+
+
+#define FF_USE_CHMOD 1
+/* This option switches attribute manipulation functions, f_chmod() and f_utime().
+/ (0:Disable or 1:Enable) Also FF_FS_READONLY needs to be 0 to enable this option. */
+
+
+#define FF_USE_LABEL 1
+/* This option switches volume label functions, f_getlabel() and f_setlabel().
+/ (0:Disable or 1:Enable) */
+
+
+#define FF_USE_FORWARD 1
+/* This option switches f_forward() function. (0:Disable or 1:Enable) */
+
+
+#define FF_USE_STRFUNC 0
+#define FF_PRINT_LLI 1
+#define FF_PRINT_FLOAT 1
+#define FF_STRF_ENCODE 3
+/* FF_USE_STRFUNC switches string functions, f_gets(), f_putc(), f_puts() and
+/ f_printf().
+/
+/ 0: Disable. FF_PRINT_LLI, FF_PRINT_FLOAT and FF_STRF_ENCODE have no effect.
+/ 1: Enable without LF-CRLF conversion.
+/ 2: Enable with LF-CRLF conversion.
+/
+/ FF_PRINT_LLI = 1 makes f_printf() support long long argument and FF_PRINT_FLOAT = 1/2
+/ makes f_printf() support floating point argument. These features want C99 or later.
+/ When FF_LFN_UNICODE >= 1 with LFN enabled, string functions convert the character
+/ encoding in it. FF_STRF_ENCODE selects assumption of character encoding ON THE FILE
+/ to be read/written via those functions.
+/
+/ 0: ANSI/OEM in current CP
+/ 1: Unicode in UTF-16LE
+/ 2: Unicode in UTF-16BE
+/ 3: Unicode in UTF-8
+*/
+
+
+/*---------------------------------------------------------------------------/
+/ Locale and Namespace Configurations
+/---------------------------------------------------------------------------*/
+
+#define FF_CODE_PAGE 932
+/* This option specifies the OEM code page to be used on the target system.
+/ Incorrect code page setting can cause a file open failure.
+/
+/ 437 - U.S.
+/ 720 - Arabic
+/ 737 - Greek
+/ 771 - KBL
+/ 775 - Baltic
+/ 850 - Latin 1
+/ 852 - Latin 2
+/ 855 - Cyrillic
+/ 857 - Turkish
+/ 860 - Portuguese
+/ 861 - Icelandic
+/ 862 - Hebrew
+/ 863 - Canadian French
+/ 864 - Arabic
+/ 865 - Nordic
+/ 866 - Russian
+/ 869 - Greek 2
+/ 932 - Japanese (DBCS)
+/ 936 - Simplified Chinese (DBCS)
+/ 949 - Korean (DBCS)
+/ 950 - Traditional Chinese (DBCS)
+/ 0 - Include all code pages above and configured by f_setcp()
+*/
+
+
+#define FF_USE_LFN 1
+#define FF_MAX_LFN 255
+/* The FF_USE_LFN switches the support for LFN (long file name).
+/
+/ 0: Disable LFN. FF_MAX_LFN has no effect.
+/ 1: Enable LFN with static working buffer on the BSS. Always NOT thread-safe.
+/ 2: Enable LFN with dynamic working buffer on the STACK.
+/ 3: Enable LFN with dynamic working buffer on the HEAP.
+/
+/ To enable the LFN, ffunicode.c needs to be added to the project. The LFN function
+/ requiers certain internal working buffer occupies (FF_MAX_LFN + 1) * 2 bytes and
+/ additional (FF_MAX_LFN + 44) / 15 * 32 bytes when exFAT is enabled.
+/ The FF_MAX_LFN defines size of the working buffer in UTF-16 code unit and it can
+/ be in range of 12 to 255. It is recommended to be set it 255 to fully support LFN
+/ specification.
+/ When use stack for the working buffer, take care on stack overflow. When use heap
+/ memory for the working buffer, memory management functions, ff_memalloc() and
+/ ff_memfree() exemplified in ffsystem.c, need to be added to the project. */
+
+
+#define FF_LFN_UNICODE 0
+/* This option switches the character encoding on the API when LFN is enabled.
+/
+/ 0: ANSI/OEM in current CP (TCHAR = char)
+/ 1: Unicode in UTF-16 (TCHAR = WCHAR)
+/ 2: Unicode in UTF-8 (TCHAR = char)
+/ 3: Unicode in UTF-32 (TCHAR = DWORD)
+/
+/ Also behavior of string I/O functions will be affected by this option.
+/ When LFN is not enabled, this option has no effect. */
+
+
+#define FF_LFN_BUF 255
+#define FF_SFN_BUF 12
+/* This set of options defines size of file name members in the FILINFO structure
+/ which is used to read out directory items. These values should be suffcient for
+/ the file names to read. The maximum possible length of the read file name depends
+/ on character encoding. When LFN is not enabled, these options have no effect. */
+
+
+#define FF_FS_RPATH 2
+/* This option configures support for relative path.
+/
+/ 0: Disable relative path and remove related functions.
+/ 1: Enable relative path. f_chdir() and f_chdrive() are available.
+/ 2: f_getcwd() function is available in addition to 1.
+*/
+
+
+/*---------------------------------------------------------------------------/
+/ Drive/Volume Configurations
+/---------------------------------------------------------------------------*/
+
+#define FF_VOLUMES 1
+/* Number of volumes (logical drives) to be used. (1-10) */
+
+
+#define FF_STR_VOLUME_ID 0
+#define FF_VOLUME_STRS "RAM","NAND","CF","SD","SD2","USB","USB2","USB3"
+/* FF_STR_VOLUME_ID switches support for volume ID in arbitrary strings.
+/ When FF_STR_VOLUME_ID is set to 1 or 2, arbitrary strings can be used as drive
+/ number in the path name. FF_VOLUME_STRS defines the volume ID strings for each
+/ logical drives. Number of items must not be less than FF_VOLUMES. Valid
+/ characters for the volume ID strings are A-Z, a-z and 0-9, however, they are
+/ compared in case-insensitive. If FF_STR_VOLUME_ID >= 1 and FF_VOLUME_STRS is
+/ not defined, a user defined volume string table is needed as:
+/
+/ const char* VolumeStr[FF_VOLUMES] = {"ram","flash","sd","usb",...
+*/
+
+
+#define FF_MULTI_PARTITION 0
+/* This option switches support for multiple volumes on the physical drive.
+/ By default (0), each logical drive number is bound to the same physical drive
+/ number and only an FAT volume found on the physical drive will be mounted.
+/ When this function is enabled (1), each logical drive number can be bound to
+/ arbitrary physical drive and partition listed in the VolToPart[]. Also f_fdisk()
+/ function will be available. */
+
+
+#define FF_MIN_SS 512
+#define FF_MAX_SS 512
+/* This set of options configures the range of sector size to be supported. (512,
+/ 1024, 2048 or 4096) Always set both 512 for most systems, generic memory card and
+/ harddisk, but a larger value may be required for on-board flash memory and some
+/ type of optical media. When FF_MAX_SS is larger than FF_MIN_SS, FatFs is configured
+/ for variable sector size mode and disk_ioctl() function needs to implement
+/ GET_SECTOR_SIZE command. */
+
+
+#define FF_LBA64 0
+/* This option switches support for 64-bit LBA. (0:Disable or 1:Enable)
+/ To enable the 64-bit LBA, also exFAT needs to be enabled. (FF_FS_EXFAT == 1) */
+
+
+#define FF_MIN_GPT 0x10000000
+/* Minimum number of sectors to switch GPT as partitioning format in f_mkfs and
+/ f_fdisk function. 0x100000000 max. This option has no effect when FF_LBA64 == 0. */
+
+
+#define FF_USE_TRIM 0
+/* This option switches support for ATA-TRIM. (0:Disable or 1:Enable)
+/ To enable Trim function, also CTRL_TRIM command should be implemented to the
+/ disk_ioctl() function. */
+
+
+
+/*---------------------------------------------------------------------------/
+/ System Configurations
+/---------------------------------------------------------------------------*/
+
+#define FF_FS_TINY 0
+/* This option switches tiny buffer configuration. (0:Normal or 1:Tiny)
+/ At the tiny configuration, size of file object (FIL) is shrinked FF_MAX_SS bytes.
+/ Instead of private sector buffer eliminated from the file object, common sector
+/ buffer in the filesystem object (FATFS) is used for the file data transfer. */
+
+
+#define FF_FS_EXFAT 0
+/* This option switches support for exFAT filesystem. (0:Disable or 1:Enable)
+/ To enable exFAT, also LFN needs to be enabled. (FF_USE_LFN >= 1)
+/ Note that enabling exFAT discards ANSI C (C89) compatibility. */
+
+
+#define FF_FS_NORTC 1
+#define FF_NORTC_MON 1
+#define FF_NORTC_MDAY 1
+#define FF_NORTC_YEAR 2022
+/* The option FF_FS_NORTC switches timestamp feature. If the system does not have
+/ an RTC or valid timestamp is not needed, set FF_FS_NORTC = 1 to disable the
+/ timestamp feature. Every object modified by FatFs will have a fixed timestamp
+/ defined by FF_NORTC_MON, FF_NORTC_MDAY and FF_NORTC_YEAR in local time.
+/ To enable timestamp function (FF_FS_NORTC = 0), get_fattime() function need to be
+/ added to the project to read current time form real-time clock. FF_NORTC_MON,
+/ FF_NORTC_MDAY and FF_NORTC_YEAR have no effect.
+/ These options have no effect in read-only configuration (FF_FS_READONLY = 1). */
+
+
+#define FF_FS_NOFSINFO 0
+/* If you need to know correct free space on the FAT32 volume, set bit 0 of this
+/ option, and f_getfree() function at the first time after volume mount will force
+/ a full FAT scan. Bit 1 controls the use of last allocated cluster number.
+/
+/ bit0=0: Use free cluster count in the FSINFO if available.
+/ bit0=1: Do not trust free cluster count in the FSINFO.
+/ bit1=0: Use last allocated cluster number in the FSINFO if available.
+/ bit1=1: Do not trust last allocated cluster number in the FSINFO.
+*/
+
+
+#define FF_FS_LOCK 0
+/* The option FF_FS_LOCK switches file lock function to control duplicated file open
+/ and illegal operation to open objects. This option must be 0 when FF_FS_READONLY
+/ is 1.
+/
+/ 0: Disable file lock function. To avoid volume corruption, application program
+/ should avoid illegal open, remove and rename to the open objects.
+/ >0: Enable file lock function. The value defines how many files/sub-directories
+/ can be opened simultaneously under file lock control. Note that the file
+/ lock control is independent of re-entrancy. */
+
+
+#define FF_FS_REENTRANT 0
+#define FF_FS_TIMEOUT 1000
+/* The option FF_FS_REENTRANT switches the re-entrancy (thread safe) of the FatFs
+/ module itself. Note that regardless of this option, file access to different
+/ volume is always re-entrant and volume control functions, f_mount(), f_mkfs()
+/ and f_fdisk() function, are always not re-entrant. Only file/directory access
+/ to the same volume is under control of this featuer.
+/
+/ 0: Disable re-entrancy. FF_FS_TIMEOUT have no effect.
+/ 1: Enable re-entrancy. Also user provided synchronization handlers,
+/ ff_mutex_create(), ff_mutex_delete(), ff_mutex_take() and ff_mutex_give()
+/ function, must be added to the project. Samples are available in ffsystem.c.
+/
+/ The FF_FS_TIMEOUT defines timeout period in unit of O/S time tick.
+*/
+
+
+
+/*--- End of configuration options ---*/
diff --git a/Examples/MAX78000/CNN/facial_recognition/project.mk b/Examples/MAX78000/CNN/facial_recognition/project.mk
index 5fa05c65dd..faf9d8210d 100644
--- a/Examples/MAX78000/CNN/facial_recognition/project.mk
+++ b/Examples/MAX78000/CNN/facial_recognition/project.mk
@@ -28,13 +28,12 @@ ifneq "$(BOARD)" "FTHR_RevA"
define ERR_MSG
ERR_NOTSUPPORTED:
This project is only supported on the MAX78000FTHR (FTHR_RevA)
-See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages
+See https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages
endef
$(error $(ERR_MSG))
endif
# Place build files specific to FTHR_RevA here.
-ifeq "$(BOARD)" "FTHR_RevA"
SDHC_CLK_FREQ = 25000000
ifeq "$(TFT_ENABLE)" "1"
@@ -45,8 +44,9 @@ VPATH += TFT/fthr
FONTS = LiberationSans16x16
endif
-endif
-
+# Enable the SDHC library
LIB_SDHC = 1
-
-
+# Include a custom ffconf.h file that disables exFAT support. exFAT support requires additional flash and RAM.
+# - FF_FS_EXFAT = 0
+FATFS_VERSION = ff15
+FF_CONF_DIR = ./include
diff --git a/Examples/MAX78000/CNN/facial_recognition/src/post_process.c b/Examples/MAX78000/CNN/facial_recognition/src/post_process.c
index ec60b7de04..dd17f7ce2c 100644
--- a/Examples/MAX78000/CNN/facial_recognition/src/post_process.c
+++ b/Examples/MAX78000/CNN/facial_recognition/src/post_process.c
@@ -368,6 +368,9 @@ void nms(void)
if (nms_removed[class_idx][nms_idx1] != 1 &&
nms_idx1 != num_nms_priors[class_idx] - 1) {
for (nms_idx2 = nms_idx1 + 1; nms_idx2 < num_nms_priors[class_idx]; ++nms_idx2) {
+ if (nms_idx2 > MAX_PRIORS) {
+ nms_idx2 = MAX_PRIORS - 1;
+ }
prior1_idx = nms_indices[class_idx][nms_idx1];
prior2_idx = nms_indices[class_idx][nms_idx2];
diff --git a/Examples/MAX78000/CNN/facial_recognition/src/sd.c b/Examples/MAX78000/CNN/facial_recognition/src/sd.c
index f1d224ea0e..b0823115a8 100644
--- a/Examples/MAX78000/CNN/facial_recognition/src/sd.c
+++ b/Examples/MAX78000/CNN/facial_recognition/src/sd.c
@@ -59,8 +59,8 @@ TCHAR *FF_ERRORS[20];
DWORD clusters_free = 0, sectors_free = 0, sectors_total = 0, volume_sn = 0;
UINT bytes_written = 0, bytes_read = 0, mounted = 0;
uint32_t total_bytes;
-uint32_t kernel_buffer[4096]; //5K seems to be limit for this app.
-BYTE work[4096];
+uint32_t kernel_buffer[2048]; //5K seems to be limit for this app.
+BYTE work[2048];
static char charset[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789,.-#'?!";
mxc_gpio_cfg_t SDPowerEnablePin = { MXC_GPIO1, MXC_GPIO_PIN_12, MXC_GPIO_FUNC_OUT,
MXC_GPIO_PAD_NONE, MXC_GPIO_VSSEL_VDDIO };
@@ -104,399 +104,6 @@ int umount()
return err;
}
-int formatSDHC()
-{
- PR_INFO("\n\n*****THE DRIVE WILL BE FORMATTED IN 5 SECONDS*****\n");
- PR_INFO("**************PRESS ANY KEY TO ABORT**************\n\n");
- MXC_UART_ClearRXFIFO(MXC_UART0);
- MXC_Delay(MSEC(5000));
-
- if (MXC_UART_GetRXFIFOAvailable(MXC_UART0) > 0) {
- return E_ABORT;
- }
-
- PR_INFO("FORMATTING DRIVE\n");
-
- if ((err = f_mkfs("", FM_ANY, 0, work, sizeof(work))) !=
- FR_OK) { //Format the default drive to FAT32
- PR_INFO("Error formatting SD card: %s\n", FF_ERRORS[err]);
- } else {
- PR_INFO("Drive formatted.\n");
- }
-
- mount();
-
- if ((err = f_setlabel("MAXIM")) != FR_OK) {
- PR_INFO("Error setting drive label: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- }
-
- umount();
-
- return err;
-}
-
-int getSize()
-{
- if (!mounted) {
- mount();
- }
-
- if ((err = f_getfree(&volume, &clusters_free, &fs)) != FR_OK) {
- PR_INFO("Error finding free size of card: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- }
-
- sectors_total = (fs->n_fatent - 2) * fs->csize;
- sectors_free = clusters_free * fs->csize;
-
- PR_INFO("Disk Size: %u bytes\n", sectors_total / 2);
- PR_INFO("Available: %u bytes\n", sectors_free / 2);
-
- return err;
-}
-
-int ls()
-{
- if (!mounted) {
- mount();
- }
-
- PR_INFO("Listing Contents of %s - \n", cwd);
-
- if ((err = f_opendir(&dir, cwd)) == FR_OK) {
- while (1) {
- err = f_readdir(&dir, &fno);
-
- if (err != FR_OK || fno.fname[0] == 0) {
- break;
- }
-
- PR_INFO("%s/%s", cwd, fno.fname);
-
- if (fno.fattrib & AM_DIR) {
- PR_INFO("/");
- }
-
- PR_INFO("\n");
- }
-
- f_closedir(&dir);
- } else {
- PR_INFO("Error opening directory!\n");
- return err;
- }
-
- PR_INFO("\nFinished listing contents\n");
-
- return err;
-}
-
-int createFile()
-{
- unsigned int length = 128;
-
- if (!mounted) {
- mount();
- }
-
- PR_INFO("Enter the name of the text file: \n");
- scanf("%255s", filename);
- PR_INFO("Enter the length of the file: (%d max)\n", MAXLEN);
- scanf("%d", &length);
-
- if (length > MAXLEN) {
- PR_INFO("Error. File size limit for this example is %d bytes.\n", MAXLEN);
- return FR_INVALID_PARAMETER;
- }
-
- PR_INFO("Creating file %s with length %d\n", filename, length);
-
- if ((err = f_open(&file, (const TCHAR *)filename, FA_CREATE_ALWAYS | FA_WRITE)) != FR_OK) {
- PR_INFO("Error opening file: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- PR_INFO("File opened!\n");
-
- generateMessage(length);
-
- if ((err = f_write(&file, &message, length, &bytes_written)) != FR_OK) {
- PR_INFO("Error writing file: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- PR_INFO("%d bytes read\n", bytes_read);
-
- if ((err = f_close(&file)) != FR_OK) {
- PR_INFO("Error closing file: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- PR_INFO("File Closed!\n");
- return err;
-}
-
-int appendFile()
-{
- unsigned int length = 0;
-
- if (!mounted) {
- mount();
- }
-
- PR_INFO("Enter name of file to append: \n");
- scanf("%255s", filename);
- PR_INFO("Enter length of random data to append: (%d max)\n", MAXLEN);
- scanf("%d", &length);
-
- if ((err = f_stat((const TCHAR *)filename, &fno)) == FR_NO_FILE) {
- PR_INFO("File %s doesn't exist!\n", (const TCHAR *)filename);
- return err;
- }
-
- if (length > MAXLEN) {
- PR_INFO("Error. Size limit for this example is %d bytes.\n", MAXLEN);
- return FR_INVALID_PARAMETER;
- }
-
- if ((err = f_open(&file, (const TCHAR *)filename, FA_OPEN_APPEND | FA_WRITE)) != FR_OK) {
- PR_INFO("Error opening file %s\n", FF_ERRORS[err]);
- return err;
- }
-
- PR_INFO("File opened!\n");
-
- generateMessage(length);
-
- if ((err = f_write(&file, &message, length, &bytes_written)) != FR_OK) {
- PR_INFO("Error writing file: %s\n", FF_ERRORS[err]);
- return err;
- }
-
- PR_INFO("%d bytes written to file\n", bytes_written);
-
- if ((err = f_close(&file)) != FR_OK) {
- PR_INFO("Error closing file: %s\n", FF_ERRORS[err]);
- return err;
- }
-
- PR_INFO("File closed.\n");
- return err;
-}
-
-int mkdir()
-{
- if (!mounted) {
- mount();
- }
-
- PR_INFO("Enter directory name: \n");
- scanf("%255s", directory);
-
- err = f_stat((const TCHAR *)directory, &fno);
-
- if (err == FR_NO_FILE) {
- PR_INFO("Creating directory...\n");
-
- if ((err = f_mkdir((const TCHAR *)directory)) != FR_OK) {
- PR_INFO("Error creating directory: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- } else {
- PR_INFO("Directory %s created.\n", directory);
- }
-
- } else {
- PR_INFO("Directory already exists.\n");
- }
-
- return err;
-}
-
-int cd()
-{
- if (!mounted) {
- mount();
- }
-
- PR_INFO("Directory to change into: \n");
- scanf("%255s", directory);
-
- if ((err = f_stat((const TCHAR *)directory, &fno)) == FR_NO_FILE) {
- PR_INFO("Directory doesn't exist (Did you mean mkdir?)\n");
- return err;
- }
-
- if ((err = f_chdir((const TCHAR *)directory)) != FR_OK) {
- PR_INFO("Error in chdir: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- PR_INFO("Changed to %s\n", directory);
- f_getcwd(cwd, sizeof(cwd));
-
- return err;
-}
-
-int delete ()
-{
- if (!mounted) {
- mount();
- }
-
- PR_INFO("File or directory to delete (always recursive!)\n");
- scanf("%255s", filename);
-
- if ((err = f_stat((const TCHAR *)filename, &fno)) == FR_NO_FILE) {
- PR_INFO("File or directory doesn't exist\n");
- return err;
- }
-
- if ((err = f_unlink(filename)) != FR_OK) {
- PR_INFO("Error deleting file\n");
- return err;
- }
-
- PR_INFO("Deleted file %s\n", filename);
- return err;
-}
-
-int example()
-{
- unsigned int length = 256;
-
- if ((err = formatSDHC()) != FR_OK) {
- PR_INFO("Error Formatting SD Card: %s\n", FF_ERRORS[err]);
- return err;
- }
-
- //open SD Card
- if ((err = mount()) != FR_OK) {
- PR_INFO("Error opening SD Card: %s\n", FF_ERRORS[err]);
- return err;
- }
-
- PR_INFO("SD Card Opened!\n");
-
- if ((err = f_setlabel("MAXIM")) != FR_OK) {
- PR_INFO("Error setting drive label: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- if ((err = f_getfree(&volume, &clusters_free, &fs)) != FR_OK) {
- PR_INFO("Error finding free size of card: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- if ((err = f_getlabel(&volume, volume_label, &volume_sn)) != FR_OK) {
- PR_INFO("Error reading drive label: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- if ((err = f_open(&file, "0:HelloWorld.txt", FA_CREATE_ALWAYS | FA_WRITE)) != FR_OK) {
- PR_INFO("Error opening file: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- PR_INFO("File opened!\n");
-
- generateMessage(length);
-
- if ((err = f_write(&file, &message, length, &bytes_written)) != FR_OK) {
- PR_INFO("Error writing file: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- PR_INFO("%d bytes written to file!\n", bytes_written);
-
- if ((err = f_close(&file)) != FR_OK) {
- PR_INFO("Error closing file: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- PR_INFO("File Closed!\n");
-
- if ((err = f_chmod("HelloWorld.txt", 0, AM_RDO | AM_ARC | AM_SYS | AM_HID)) != FR_OK) {
- PR_INFO("Error in chmod: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- err = f_stat("MaximSDHC", &fno);
-
- if (err == FR_NO_FILE) {
- PR_INFO("Creating Directory...\n");
-
- if ((err = f_mkdir("MaximSDHC")) != FR_OK) {
- PR_INFO("Error creating directory: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
- }
-
- PR_INFO("Renaming File...\n");
-
- if ((err = f_rename("0:HelloWorld.txt", "0:MaximSDHC/HelloMaxim.txt")) !=
- FR_OK) { //cr: clearify 0:file notation
- PR_INFO("Error moving file: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- if ((err = f_chdir("/MaximSDHC")) != FR_OK) {
- PR_INFO("Error in chdir: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- PR_INFO("Attempting to read back file...\n");
-
- if ((err = f_open(&file, "HelloMaxim.txt", FA_READ)) != FR_OK) {
- PR_INFO("Error opening file: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- if ((err = f_read(&file, &message, bytes_written, &bytes_read)) != FR_OK) {
- PR_INFO("Error reading file: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- PR_INFO("Read Back %d bytes\n", bytes_read);
- PR_INFO("Message: ");
- PR_INFO("%s", message);
- PR_INFO("\n");
-
- if ((err = f_close(&file)) != FR_OK) {
- PR_INFO("Error closing file: %s\n", FF_ERRORS[err]);
- f_mount(NULL, "", 0);
- return err;
- }
-
- PR_INFO("File Closed!\n");
-
- //unmount SD Card
- //f_mount(fs, "", 0);
- if ((err = f_mount(NULL, "", 0)) != FR_OK) {
- PR_INFO("Error unmounting volume: %s\n", FF_ERRORS[err]);
- return err;
- }
-
- return 0;
-}
-
void waitCardInserted()
{
// On the MAX78000FTHR board, P0.12 will be pulled low when a card is inserted.
diff --git a/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/README.md b/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/README.md
+++ b/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/settings.json b/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/settings.json
index 36baff4a0e..9b7b2a14bd 100755
--- a/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/kws20_demo-riscv/README.md b/Examples/MAX78000/CNN/kws20_demo-riscv/README.md
index 69eccd693c..130b665b7d 100644
--- a/Examples/MAX78000/CNN/kws20_demo-riscv/README.md
+++ b/Examples/MAX78000/CNN/kws20_demo-riscv/README.md
@@ -424,7 +424,7 @@ If a new network is developed and synthesized, the new weight file and related A
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/kws20_demo-riscv/TFT/fthr/bmp/README.md b/Examples/MAX78000/CNN/kws20_demo-riscv/TFT/fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/CNN/kws20_demo-riscv/TFT/fthr/bmp/README.md
+++ b/Examples/MAX78000/CNN/kws20_demo-riscv/TFT/fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/kws20_demo-riscv/project.mk b/Examples/MAX78000/CNN/kws20_demo-riscv/project.mk
index 928e9441e6..2da3325324 100644
--- a/Examples/MAX78000/CNN/kws20_demo-riscv/project.mk
+++ b/Examples/MAX78000/CNN/kws20_demo-riscv/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/CNN/kws20_demo/.cproject b/Examples/MAX78000/CNN/kws20_demo/.cproject
index 09b5cb7e66..d09b772e10 100644
--- a/Examples/MAX78000/CNN/kws20_demo/.cproject
+++ b/Examples/MAX78000/CNN/kws20_demo/.cproject
@@ -32,9 +32,7 @@
-
-
-
+
diff --git a/Examples/MAX78000/CNN/kws20_demo/.vscode/README.md b/Examples/MAX78000/CNN/kws20_demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/kws20_demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/kws20_demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/kws20_demo/.vscode/settings.json b/Examples/MAX78000/CNN/kws20_demo/.vscode/settings.json
index ea7f277c42..7e02d88462 100755
--- a/Examples/MAX78000/CNN/kws20_demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/kws20_demo/.vscode/settings.json
@@ -48,14 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/SDHC/Include",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -66,14 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/kws20_demo/Makefile b/Examples/MAX78000/CNN/kws20_demo/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/kws20_demo/Makefile
+++ b/Examples/MAX78000/CNN/kws20_demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/kws20_demo/README.md b/Examples/MAX78000/CNN/kws20_demo/README.md
index 27fd07ae04..046ef419f6 100644
--- a/Examples/MAX78000/CNN/kws20_demo/README.md
+++ b/Examples/MAX78000/CNN/kws20_demo/README.md
@@ -22,13 +22,13 @@ To improve the unknown detection, the model in version 3.2 is trained with an ad
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
Note: fully clean and re-build this project after changing any of the config options below.
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
* This project supports output to a TFT display. When building for the MAX78000EVKIT, the display is **enabled** by default.
* To _disable_ the TFT display code, comment out `PROJ_CFLAGS += -DTFT_ENABLE` in [project.mk](project.mk)
diff --git a/Examples/MAX78000/CNN/kws20_demo/TFT/fthr/bmp/README.md b/Examples/MAX78000/CNN/kws20_demo/TFT/fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/CNN/kws20_demo/TFT/fthr/bmp/README.md
+++ b/Examples/MAX78000/CNN/kws20_demo/TFT/fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/kws20_demo/project.mk b/Examples/MAX78000/CNN/kws20_demo/project.mk
index 007417e47a..97bcfa64cf 100644
--- a/Examples/MAX78000/CNN/kws20_demo/project.mk
+++ b/Examples/MAX78000/CNN/kws20_demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/kws20_v3/.vscode/README.md b/Examples/MAX78000/CNN/kws20_v3/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/kws20_v3/.vscode/README.md
+++ b/Examples/MAX78000/CNN/kws20_v3/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/kws20_v3/.vscode/settings.json b/Examples/MAX78000/CNN/kws20_v3/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/kws20_v3/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/kws20_v3/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/kws20_v3/Makefile b/Examples/MAX78000/CNN/kws20_v3/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/kws20_v3/Makefile
+++ b/Examples/MAX78000/CNN/kws20_v3/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/kws20_v3/README.md b/Examples/MAX78000/CNN/kws20_v3/README.md
index 326bec2696..9d975d0bea 100644
--- a/Examples/MAX78000/CNN/kws20_v3/README.md
+++ b/Examples/MAX78000/CNN/kws20_v3/README.md
@@ -11,11 +11,11 @@ output in the near future.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
- Connect a USB cable between the PC and the CN1 (USB/PWR) connector.
diff --git a/Examples/MAX78000/CNN/kws20_v3/project.mk b/Examples/MAX78000/CNN/kws20_v3/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/kws20_v3/project.mk
+++ b/Examples/MAX78000/CNN/kws20_v3/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/mnist-riscv/.vscode/README.md b/Examples/MAX78000/CNN/mnist-riscv/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/mnist-riscv/.vscode/README.md
+++ b/Examples/MAX78000/CNN/mnist-riscv/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/mnist-riscv/.vscode/settings.json b/Examples/MAX78000/CNN/mnist-riscv/.vscode/settings.json
index 7ddd12a014..a8651f1e3c 100755
--- a/Examples/MAX78000/CNN/mnist-riscv/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/mnist-riscv/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/mnist-riscv/README.md b/Examples/MAX78000/CNN/mnist-riscv/README.md
index 8e2bc44cce..b24ae36d00 100644
--- a/Examples/MAX78000/CNN/mnist-riscv/README.md
+++ b/Examples/MAX78000/CNN/mnist-riscv/README.md
@@ -12,11 +12,11 @@ output in the near future.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/CNN/mnist/.vscode/README.md b/Examples/MAX78000/CNN/mnist/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/mnist/.vscode/README.md
+++ b/Examples/MAX78000/CNN/mnist/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/mnist/.vscode/settings.json b/Examples/MAX78000/CNN/mnist/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/mnist/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/mnist/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/mnist/Makefile b/Examples/MAX78000/CNN/mnist/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/mnist/Makefile
+++ b/Examples/MAX78000/CNN/mnist/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/mnist/README.md b/Examples/MAX78000/CNN/mnist/README.md
index 4659c00aa3..6f43c86e5d 100644
--- a/Examples/MAX78000/CNN/mnist/README.md
+++ b/Examples/MAX78000/CNN/mnist/README.md
@@ -11,11 +11,11 @@ output in the near future.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
+* This project comes pre-configured for the MAX32655EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the MSDK User Guide for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/CNN/mnist/project.mk b/Examples/MAX78000/CNN/mnist/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/mnist/project.mk
+++ b/Examples/MAX78000/CNN/mnist/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/rps-demo/.vscode/README.md b/Examples/MAX78000/CNN/rps-demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/rps-demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/rps-demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/rps-demo/.vscode/settings.json b/Examples/MAX78000/CNN/rps-demo/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/CNN/rps-demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/rps-demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/rps-demo/Makefile b/Examples/MAX78000/CNN/rps-demo/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/rps-demo/Makefile
+++ b/Examples/MAX78000/CNN/rps-demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/rps-demo/README.md b/Examples/MAX78000/CNN/rps-demo/README.md
index cfa2ce4bb8..a51906c77f 100644
--- a/Examples/MAX78000/CNN/rps-demo/README.md
+++ b/Examples/MAX78000/CNN/rps-demo/README.md
@@ -8,11 +8,11 @@ The example supports live capture from camera module and displays the result on
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
* By default, this project is configured for [camera mode](#camera-mode). It can be configured for [offline mode](#offline-mode) by defining `USE_SAMPLE_DATA` in [main.c](main.c).
diff --git a/Examples/MAX78000/CNN/rps-demo/TFT/fthr/bmp/README.md b/Examples/MAX78000/CNN/rps-demo/TFT/fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/CNN/rps-demo/TFT/fthr/bmp/README.md
+++ b/Examples/MAX78000/CNN/rps-demo/TFT/fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/rps-demo/project.mk b/Examples/MAX78000/CNN/rps-demo/project.mk
index f19dcdab88..3866379ae2 100644
--- a/Examples/MAX78000/CNN/rps-demo/project.mk
+++ b/Examples/MAX78000/CNN/rps-demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/rps/.vscode/README.md b/Examples/MAX78000/CNN/rps/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/rps/.vscode/README.md
+++ b/Examples/MAX78000/CNN/rps/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/rps/.vscode/settings.json b/Examples/MAX78000/CNN/rps/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/rps/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/rps/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/rps/Makefile b/Examples/MAX78000/CNN/rps/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/rps/Makefile
+++ b/Examples/MAX78000/CNN/rps/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/rps/README.md b/Examples/MAX78000/CNN/rps/README.md
index 6bc6f05bfa..fb9748b470 100644
--- a/Examples/MAX78000/CNN/rps/README.md
+++ b/Examples/MAX78000/CNN/rps/README.md
@@ -10,11 +10,11 @@ output is located in "rps-demo: directory.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/CNN/rps/project.mk b/Examples/MAX78000/CNN/rps/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/rps/project.mk
+++ b/Examples/MAX78000/CNN/rps/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/snake_game_demo/.vscode/README.md b/Examples/MAX78000/CNN/snake_game_demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/snake_game_demo/.vscode/README.md
+++ b/Examples/MAX78000/CNN/snake_game_demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/snake_game_demo/.vscode/settings.json b/Examples/MAX78000/CNN/snake_game_demo/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/CNN/snake_game_demo/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/snake_game_demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CNN/snake_game_demo/Makefile b/Examples/MAX78000/CNN/snake_game_demo/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/snake_game_demo/Makefile
+++ b/Examples/MAX78000/CNN/snake_game_demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/snake_game_demo/README.md b/Examples/MAX78000/CNN/snake_game_demo/README.md
index ccccc19b9b..64659ba0b9 100644
--- a/Examples/MAX78000/CNN/snake_game_demo/README.md
+++ b/Examples/MAX78000/CNN/snake_game_demo/README.md
@@ -29,11 +29,11 @@ Here are the instructions to play this game using speech command:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## MAX78000 EVKIT operations
diff --git a/Examples/MAX78000/CNN/snake_game_demo/TFT/fthr/bmp/README.md b/Examples/MAX78000/CNN/snake_game_demo/TFT/fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/CNN/snake_game_demo/TFT/fthr/bmp/README.md
+++ b/Examples/MAX78000/CNN/snake_game_demo/TFT/fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CNN/snake_game_demo/project.mk b/Examples/MAX78000/CNN/snake_game_demo/project.mk
index ee35ce278c..88fcbe7632 100644
--- a/Examples/MAX78000/CNN/snake_game_demo/project.mk
+++ b/Examples/MAX78000/CNN/snake_game_demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/README.md b/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/README.md
+++ b/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/settings.json b/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/settings.json
+++ b/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CNN/svhn_tinierssd/Makefile b/Examples/MAX78000/CNN/svhn_tinierssd/Makefile
index 687956b621..bc9f51b843 100644
--- a/Examples/MAX78000/CNN/svhn_tinierssd/Makefile
+++ b/Examples/MAX78000/CNN/svhn_tinierssd/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CNN/svhn_tinierssd/project.mk b/Examples/MAX78000/CNN/svhn_tinierssd/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78000/CNN/svhn_tinierssd/project.mk
+++ b/Examples/MAX78000/CNN/svhn_tinierssd/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CRC/.vscode/README.md b/Examples/MAX78000/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CRC/.vscode/README.md
+++ b/Examples/MAX78000/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CRC/.vscode/settings.json b/Examples/MAX78000/CRC/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/CRC/.vscode/settings.json
+++ b/Examples/MAX78000/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/CRC/Makefile b/Examples/MAX78000/CRC/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/CRC/Makefile
+++ b/Examples/MAX78000/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CRC/README.md b/Examples/MAX78000/CRC/README.md
index b0a4a8f43e..1bde795562 100644
--- a/Examples/MAX78000/CRC/README.md
+++ b/Examples/MAX78000/CRC/README.md
@@ -6,11 +6,11 @@ This example demonstrates the use of the HW CRC calculator. The example first g
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/CRC/project.mk b/Examples/MAX78000/CRC/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/CRC/project.mk
+++ b/Examples/MAX78000/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/CameraIF/.vscode/README.md b/Examples/MAX78000/CameraIF/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CameraIF/.vscode/README.md
+++ b/Examples/MAX78000/CameraIF/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CameraIF/.vscode/settings.json b/Examples/MAX78000/CameraIF/.vscode/settings.json
index f3585d39ad..a51700c2ca 100755
--- a/Examples/MAX78000/CameraIF/.vscode/settings.json
+++ b/Examples/MAX78000/CameraIF/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/Core/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include/dsp",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CameraIF/Makefile b/Examples/MAX78000/CameraIF/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/CameraIF/Makefile
+++ b/Examples/MAX78000/CameraIF/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CameraIF/README.md b/Examples/MAX78000/CameraIF/README.md
index e68bbdca1e..39921419a0 100644
--- a/Examples/MAX78000/CameraIF/README.md
+++ b/Examples/MAX78000/CameraIF/README.md
@@ -12,10 +12,10 @@ This example demonstrates the Parallel Camera Interface (PCIF) drivers and camer
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
* To change the camera drivers, set the `CAMERA` build [configuration variable](.vscode/README.md#build-configuration) in [project.mk](project.mk).
diff --git a/Examples/MAX78000/CameraIF/pc_utility/README.md b/Examples/MAX78000/CameraIF/pc_utility/README.md
index 499da5e7e7..cbaf951d92 100644
--- a/Examples/MAX78000/CameraIF/pc_utility/README.md
+++ b/Examples/MAX78000/CameraIF/pc_utility/README.md
@@ -17,7 +17,7 @@ The default baudrate is 921600 but if you would like to change it, do not forget
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CameraIF/project.mk b/Examples/MAX78000/CameraIF/project.mk
index 1eea585490..0af0052648 100644
--- a/Examples/MAX78000/CameraIF/project.mk
+++ b/Examples/MAX78000/CameraIF/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/CameraIF_Debayer/.vscode/README.md b/Examples/MAX78000/CameraIF_Debayer/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/CameraIF_Debayer/.vscode/README.md
+++ b/Examples/MAX78000/CameraIF_Debayer/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/CameraIF_Debayer/.vscode/settings.json b/Examples/MAX78000/CameraIF_Debayer/.vscode/settings.json
index f3585d39ad..a51700c2ca 100755
--- a/Examples/MAX78000/CameraIF_Debayer/.vscode/settings.json
+++ b/Examples/MAX78000/CameraIF_Debayer/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/Core/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include/dsp",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/CameraIF_Debayer/Makefile b/Examples/MAX78000/CameraIF_Debayer/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/CameraIF_Debayer/Makefile
+++ b/Examples/MAX78000/CameraIF_Debayer/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/CameraIF_Debayer/README.md b/Examples/MAX78000/CameraIF_Debayer/README.md
index df99a73418..feedb08419 100644
--- a/Examples/MAX78000/CameraIF_Debayer/README.md
+++ b/Examples/MAX78000/CameraIF_Debayer/README.md
@@ -8,7 +8,7 @@ It requires debayering/demosaicing and color correction post-processing algorith
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CameraIF_Debayer/pc_utility/README.md b/Examples/MAX78000/CameraIF_Debayer/pc_utility/README.md
index 028c381408..3d6c687c13 100644
--- a/Examples/MAX78000/CameraIF_Debayer/pc_utility/README.md
+++ b/Examples/MAX78000/CameraIF_Debayer/pc_utility/README.md
@@ -13,7 +13,7 @@ to update the board side too.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/CameraIF_Debayer/project.mk b/Examples/MAX78000/CameraIF_Debayer/project.mk
index abdfc52e6c..eecba6018c 100644
--- a/Examples/MAX78000/CameraIF_Debayer/project.mk
+++ b/Examples/MAX78000/CameraIF_Debayer/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/Coremark/.vscode/README.md b/Examples/MAX78000/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/Coremark/.vscode/README.md
+++ b/Examples/MAX78000/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/Coremark/.vscode/settings.json b/Examples/MAX78000/Coremark/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/Coremark/.vscode/settings.json
+++ b/Examples/MAX78000/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/Coremark/Makefile b/Examples/MAX78000/Coremark/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/Coremark/Makefile
+++ b/Examples/MAX78000/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/Coremark/README.md b/Examples/MAX78000/Coremark/README.md
index 9177381a0c..52ba3ccd46 100644
--- a/Examples/MAX78000/Coremark/README.md
+++ b/Examples/MAX78000/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/Coremark/project.mk b/Examples/MAX78000/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX78000/Coremark/project.mk
+++ b/Examples/MAX78000/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/DMA/.vscode/README.md b/Examples/MAX78000/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/DMA/.vscode/README.md
+++ b/Examples/MAX78000/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/DMA/.vscode/settings.json b/Examples/MAX78000/DMA/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/DMA/.vscode/settings.json
+++ b/Examples/MAX78000/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/DMA/Makefile b/Examples/MAX78000/DMA/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/DMA/Makefile
+++ b/Examples/MAX78000/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/DMA/README.md b/Examples/MAX78000/DMA/README.md
index 75047edeac..88e66cde04 100644
--- a/Examples/MAX78000/DMA/README.md
+++ b/Examples/MAX78000/DMA/README.md
@@ -8,11 +8,11 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/DMA/project.mk b/Examples/MAX78000/DMA/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/DMA/project.mk
+++ b/Examples/MAX78000/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ECC/.vscode/README.md b/Examples/MAX78000/ECC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ECC/.vscode/README.md
+++ b/Examples/MAX78000/ECC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ECC/.vscode/settings.json b/Examples/MAX78000/ECC/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/ECC/.vscode/settings.json
+++ b/Examples/MAX78000/ECC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/ECC/Makefile b/Examples/MAX78000/ECC/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/ECC/Makefile
+++ b/Examples/MAX78000/ECC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ECC/README.md b/Examples/MAX78000/ECC/README.md
index 4af6de064a..113174c28c 100644
--- a/Examples/MAX78000/ECC/README.md
+++ b/Examples/MAX78000/ECC/README.md
@@ -10,11 +10,11 @@ That same word is modified again to contain a double bit error. The word is rea
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/ECC/project.mk b/Examples/MAX78000/ECC/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/ECC/project.mk
+++ b/Examples/MAX78000/ECC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/EEPROM_Emulator/.vscode/README.md b/Examples/MAX78000/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX78000/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX78000/EEPROM_Emulator/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX78000/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/EEPROM_Emulator/Makefile b/Examples/MAX78000/EEPROM_Emulator/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/EEPROM_Emulator/Makefile
+++ b/Examples/MAX78000/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/EEPROM_Emulator/README.md b/Examples/MAX78000/EEPROM_Emulator/README.md
index a439868546..c3dcf48ddf 100644
--- a/Examples/MAX78000/EEPROM_Emulator/README.md
+++ b/Examples/MAX78000/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX78000 to emulate a 32KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -47,11 +47,11 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX78000/EEPROM_Emulator/project.mk b/Examples/MAX78000/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX78000/EEPROM_Emulator/project.mk
+++ b/Examples/MAX78000/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/FTHR_I2C/.vscode/README.md b/Examples/MAX78000/FTHR_I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/FTHR_I2C/.vscode/README.md
+++ b/Examples/MAX78000/FTHR_I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/FTHR_I2C/.vscode/settings.json b/Examples/MAX78000/FTHR_I2C/.vscode/settings.json
index 736459330a..c492042493 100755
--- a/Examples/MAX78000/FTHR_I2C/.vscode/settings.json
+++ b/Examples/MAX78000/FTHR_I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/FTHR_I2C/Makefile b/Examples/MAX78000/FTHR_I2C/Makefile
index 5d46422095..6a71f2f2f9 100644
--- a/Examples/MAX78000/FTHR_I2C/Makefile
+++ b/Examples/MAX78000/FTHR_I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/FTHR_I2C/README.md b/Examples/MAX78000/FTHR_I2C/README.md
index b61eaab277..0eb128d813 100644
--- a/Examples/MAX78000/FTHR_I2C/README.md
+++ b/Examples/MAX78000/FTHR_I2C/README.md
@@ -8,7 +8,7 @@ This example uses I2C to cycle through the 8 colors of the RGB LED connected to
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/FTHR_I2C/project.mk b/Examples/MAX78000/FTHR_I2C/project.mk
index a7a4e8ac20..29264b5f9f 100644
--- a/Examples/MAX78000/FTHR_I2C/project.mk
+++ b/Examples/MAX78000/FTHR_I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/FTHR_SRAM/.vscode/README.md b/Examples/MAX78000/FTHR_SRAM/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/FTHR_SRAM/.vscode/README.md
+++ b/Examples/MAX78000/FTHR_SRAM/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/FTHR_SRAM/.vscode/settings.json b/Examples/MAX78000/FTHR_SRAM/.vscode/settings.json
index c8718a8d1d..b0d2572064 100755
--- a/Examples/MAX78000/FTHR_SRAM/.vscode/settings.json
+++ b/Examples/MAX78000/FTHR_SRAM/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/FTHR_SRAM/Makefile b/Examples/MAX78000/FTHR_SRAM/Makefile
index 5d46422095..6a71f2f2f9 100644
--- a/Examples/MAX78000/FTHR_SRAM/Makefile
+++ b/Examples/MAX78000/FTHR_SRAM/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/FTHR_SRAM/README.md b/Examples/MAX78000/FTHR_SRAM/README.md
index 86a735c18b..7e8af45886 100644
--- a/Examples/MAX78000/FTHR_SRAM/README.md
+++ b/Examples/MAX78000/FTHR_SRAM/README.md
@@ -6,7 +6,7 @@ This example demonstrates with the N01S830HA external SRAM IC on the MAX78000FTH
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/FTHR_SRAM/project.mk b/Examples/MAX78000/FTHR_SRAM/project.mk
index acbe04494c..c6a3275d83 100644
--- a/Examples/MAX78000/FTHR_SRAM/project.mk
+++ b/Examples/MAX78000/FTHR_SRAM/project.mk
@@ -3,12 +3,12 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
BOARD = FTHR_RevA
ifneq "$(BOARD)" "FTHR_RevA"
-$(error ERR_NOTSUPPORTED: This example is only supported on the MAX78000FTHR board! See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages)
+$(error ERR_NOTSUPPORTED: This example is only supported on the MAX78000FTHR board! See https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages)
endif
diff --git a/Examples/MAX78000/Flash/.vscode/README.md b/Examples/MAX78000/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/Flash/.vscode/README.md
+++ b/Examples/MAX78000/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/Flash/.vscode/settings.json b/Examples/MAX78000/Flash/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/Flash/.vscode/settings.json
+++ b/Examples/MAX78000/Flash/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/Flash/Makefile b/Examples/MAX78000/Flash/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/Flash/Makefile
+++ b/Examples/MAX78000/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/Flash/README.md b/Examples/MAX78000/Flash/README.md
index 97b7252f6c..48d2e9b7b1 100644
--- a/Examples/MAX78000/Flash/README.md
+++ b/Examples/MAX78000/Flash/README.md
@@ -20,11 +20,11 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Hardware Connections
diff --git a/Examples/MAX78000/Flash/project.mk b/Examples/MAX78000/Flash/project.mk
index 691d759892..a0b56247f1 100644
--- a/Examples/MAX78000/Flash/project.mk
+++ b/Examples/MAX78000/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/Flash_CLI/.vscode/README.md b/Examples/MAX78000/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX78000/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/Flash_CLI/.vscode/settings.json b/Examples/MAX78000/Flash_CLI/.vscode/settings.json
index 2ac761c59f..d8450cc9d1 100755
--- a/Examples/MAX78000/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX78000/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/Flash_CLI/Makefile b/Examples/MAX78000/Flash_CLI/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/Flash_CLI/Makefile
+++ b/Examples/MAX78000/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/Flash_CLI/README.md b/Examples/MAX78000/Flash_CLI/README.md
index ae835c8d83..65c7dd299c 100644
--- a/Examples/MAX78000/Flash_CLI/README.md
+++ b/Examples/MAX78000/Flash_CLI/README.md
@@ -8,11 +8,11 @@ This example demonstates the CLI commands feature of FreeRTOS, various features
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/Flash_CLI/project.mk b/Examples/MAX78000/Flash_CLI/project.mk
index 85cc1f3fad..c57a7e47a0 100644
--- a/Examples/MAX78000/Flash_CLI/project.mk
+++ b/Examples/MAX78000/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/FreeRTOSDemo/.vscode/README.md b/Examples/MAX78000/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX78000/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX78000/FreeRTOSDemo/.vscode/settings.json
index 7d4ffd5222..037f65d8c7 100755
--- a/Examples/MAX78000/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX78000/FreeRTOSDemo/.vscode/settings.json
@@ -48,13 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -68,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -75,7 +76,6 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX78000/FreeRTOSDemo/Makefile b/Examples/MAX78000/FreeRTOSDemo/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/FreeRTOSDemo/Makefile
+++ b/Examples/MAX78000/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/FreeRTOSDemo/README.md b/Examples/MAX78000/FreeRTOSDemo/README.md
index d595176f26..71758a5018 100644
--- a/Examples/MAX78000/FreeRTOSDemo/README.md
+++ b/Examples/MAX78000/FreeRTOSDemo/README.md
@@ -6,11 +6,11 @@ A basic getting started application for FreeRTOS.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX78000/FreeRTOSDemo/project.mk b/Examples/MAX78000/FreeRTOSDemo/project.mk
index 4eeefc4d54..363dc2ba3c 100644
--- a/Examples/MAX78000/FreeRTOSDemo/project.mk
+++ b/Examples/MAX78000/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/GPIO/.vscode/README.md b/Examples/MAX78000/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/GPIO/.vscode/README.md
+++ b/Examples/MAX78000/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/GPIO/.vscode/settings.json b/Examples/MAX78000/GPIO/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/GPIO/.vscode/settings.json
+++ b/Examples/MAX78000/GPIO/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/GPIO/Makefile b/Examples/MAX78000/GPIO/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/GPIO/Makefile
+++ b/Examples/MAX78000/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/GPIO/README.md b/Examples/MAX78000/GPIO/README.md
index 0d1ef0e186..135bf10f5f 100644
--- a/Examples/MAX78000/GPIO/README.md
+++ b/Examples/MAX78000/GPIO/README.md
@@ -14,11 +14,11 @@ P1.7 (SW2) is continuously scanned and whatever value is read on that pin is the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/GPIO/project.mk b/Examples/MAX78000/GPIO/project.mk
index 5a69c45252..5262c77839 100644
--- a/Examples/MAX78000/GPIO/project.mk
+++ b/Examples/MAX78000/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/Hello_World/.vscode/README.md b/Examples/MAX78000/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/Hello_World/.vscode/README.md
+++ b/Examples/MAX78000/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/Hello_World/.vscode/settings.json b/Examples/MAX78000/Hello_World/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/Hello_World/.vscode/settings.json
+++ b/Examples/MAX78000/Hello_World/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/Hello_World/Makefile b/Examples/MAX78000/Hello_World/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/Hello_World/Makefile
+++ b/Examples/MAX78000/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/Hello_World/README.md b/Examples/MAX78000/Hello_World/README.md
index f8bde7581e..66d04c6583 100644
--- a/Examples/MAX78000/Hello_World/README.md
+++ b/Examples/MAX78000/Hello_World/README.md
@@ -8,11 +8,11 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/Hello_World/project.mk b/Examples/MAX78000/Hello_World/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/Hello_World/project.mk
+++ b/Examples/MAX78000/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/Hello_World_Cpp/.vscode/README.md b/Examples/MAX78000/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX78000/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX78000/Hello_World_Cpp/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX78000/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/Hello_World_Cpp/Makefile b/Examples/MAX78000/Hello_World_Cpp/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/Hello_World_Cpp/Makefile
+++ b/Examples/MAX78000/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/Hello_World_Cpp/README.md b/Examples/MAX78000/Hello_World_Cpp/README.md
index 372509a5d6..cb860d000d 100644
--- a/Examples/MAX78000/Hello_World_Cpp/README.md
+++ b/Examples/MAX78000/Hello_World_Cpp/README.md
@@ -8,11 +8,11 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/Hello_World_Cpp/project.mk b/Examples/MAX78000/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/Hello_World_Cpp/project.mk
+++ b/Examples/MAX78000/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/I2C_ADXL343/.vscode/README.md b/Examples/MAX78000/I2C_ADXL343/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/I2C_ADXL343/.vscode/README.md
+++ b/Examples/MAX78000/I2C_ADXL343/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/I2C_ADXL343/.vscode/settings.json b/Examples/MAX78000/I2C_ADXL343/.vscode/settings.json
index c8718a8d1d..b0d2572064 100755
--- a/Examples/MAX78000/I2C_ADXL343/.vscode/settings.json
+++ b/Examples/MAX78000/I2C_ADXL343/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/I2C_ADXL343/Makefile b/Examples/MAX78000/I2C_ADXL343/Makefile
index 5d46422095..6a71f2f2f9 100644
--- a/Examples/MAX78000/I2C_ADXL343/Makefile
+++ b/Examples/MAX78000/I2C_ADXL343/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/I2C_ADXL343/README.md b/Examples/MAX78000/I2C_ADXL343/README.md
index 0e7e49d40f..2faec7357b 100644
--- a/Examples/MAX78000/I2C_ADXL343/README.md
+++ b/Examples/MAX78000/I2C_ADXL343/README.md
@@ -6,11 +6,11 @@ This application demonstrates I2C communication between the MAX78000FTHR Applica
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/I2C_ADXL343/project.mk b/Examples/MAX78000/I2C_ADXL343/project.mk
index 1d742b5679..34d11d4013 100644
--- a/Examples/MAX78000/I2C_ADXL343/project.mk
+++ b/Examples/MAX78000/I2C_ADXL343/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/I2C_MNGR/.vscode/README.md b/Examples/MAX78000/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX78000/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/I2C_MNGR/.vscode/settings.json b/Examples/MAX78000/I2C_MNGR/.vscode/settings.json
index 54b752b8e9..3c413674cf 100755
--- a/Examples/MAX78000/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX78000/I2C_MNGR/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX78000/I2C_MNGR/Makefile b/Examples/MAX78000/I2C_MNGR/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/I2C_MNGR/Makefile
+++ b/Examples/MAX78000/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/I2C_MNGR/README.md b/Examples/MAX78000/I2C_MNGR/README.md
index 2309dedcd1..ea935c0f55 100644
--- a/Examples/MAX78000/I2C_MNGR/README.md
+++ b/Examples/MAX78000/I2C_MNGR/README.md
@@ -10,11 +10,11 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/I2C_MNGR/project.mk b/Examples/MAX78000/I2C_MNGR/project.mk
index dc55c2309b..c0a17b0049 100644
--- a/Examples/MAX78000/I2C_MNGR/project.mk
+++ b/Examples/MAX78000/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/I2C_SCAN/.vscode/README.md b/Examples/MAX78000/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX78000/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/I2C_SCAN/.vscode/settings.json b/Examples/MAX78000/I2C_SCAN/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX78000/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/I2C_SCAN/Makefile b/Examples/MAX78000/I2C_SCAN/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/I2C_SCAN/Makefile
+++ b/Examples/MAX78000/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/I2C_SCAN/README.md b/Examples/MAX78000/I2C_SCAN/README.md
index 30d5bec3b3..bec1e454b8 100644
--- a/Examples/MAX78000/I2C_SCAN/README.md
+++ b/Examples/MAX78000/I2C_SCAN/README.md
@@ -6,11 +6,11 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/I2C_SCAN/project.mk b/Examples/MAX78000/I2C_SCAN/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/I2C_SCAN/project.mk
+++ b/Examples/MAX78000/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/I2C_Sensor/.vscode/README.md b/Examples/MAX78000/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX78000/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/I2C_Sensor/.vscode/settings.json b/Examples/MAX78000/I2C_Sensor/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX78000/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/I2C_Sensor/Makefile b/Examples/MAX78000/I2C_Sensor/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/I2C_Sensor/Makefile
+++ b/Examples/MAX78000/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/I2C_Sensor/README.md b/Examples/MAX78000/I2C_Sensor/README.md
index 10df78be53..96dab8699e 100644
--- a/Examples/MAX78000/I2C_Sensor/README.md
+++ b/Examples/MAX78000/I2C_Sensor/README.md
@@ -8,11 +8,11 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/I2C_Sensor/project.mk b/Examples/MAX78000/I2C_Sensor/project.mk
index a53675ddcf..6a77af6337 100644
--- a/Examples/MAX78000/I2C_Sensor/project.mk
+++ b/Examples/MAX78000/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/I2S/.vscode/README.md b/Examples/MAX78000/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/I2S/.vscode/README.md
+++ b/Examples/MAX78000/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/I2S/.vscode/settings.json b/Examples/MAX78000/I2S/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/I2S/.vscode/settings.json
+++ b/Examples/MAX78000/I2S/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/I2S/Makefile b/Examples/MAX78000/I2S/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/I2S/Makefile
+++ b/Examples/MAX78000/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/I2S/README.md b/Examples/MAX78000/I2S/README.md
index fbe80f1f6d..8662f0da8a 100644
--- a/Examples/MAX78000/I2S/README.md
+++ b/Examples/MAX78000/I2S/README.md
@@ -6,11 +6,11 @@ This application demonstrates receiving data from the microphone on the MAX78000
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/I2S/project.mk b/Examples/MAX78000/I2S/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/I2S/project.mk
+++ b/Examples/MAX78000/I2S/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/I2S_DMA/.vscode/README.md b/Examples/MAX78000/I2S_DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/I2S_DMA/.vscode/README.md
+++ b/Examples/MAX78000/I2S_DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/I2S_DMA/.vscode/settings.json b/Examples/MAX78000/I2S_DMA/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/I2S_DMA/.vscode/settings.json
+++ b/Examples/MAX78000/I2S_DMA/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/I2S_DMA/Makefile b/Examples/MAX78000/I2S_DMA/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/I2S_DMA/Makefile
+++ b/Examples/MAX78000/I2S_DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/I2S_DMA/README.md b/Examples/MAX78000/I2S_DMA/README.md
index 5671fcc95b..0a5604a975 100644
--- a/Examples/MAX78000/I2S_DMA/README.md
+++ b/Examples/MAX78000/I2S_DMA/README.md
@@ -6,11 +6,11 @@ This application demonstrates receiving data from the microphone on the MAX78000
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/I2S_DMA/project.mk b/Examples/MAX78000/I2S_DMA/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/I2S_DMA/project.mk
+++ b/Examples/MAX78000/I2S_DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/I2S_DMA_Target/.vscode/README.md b/Examples/MAX78000/I2S_DMA_Target/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/I2S_DMA_Target/.vscode/README.md
+++ b/Examples/MAX78000/I2S_DMA_Target/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/I2S_DMA_Target/.vscode/settings.json b/Examples/MAX78000/I2S_DMA_Target/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/I2S_DMA_Target/.vscode/settings.json
+++ b/Examples/MAX78000/I2S_DMA_Target/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/I2S_DMA_Target/Makefile b/Examples/MAX78000/I2S_DMA_Target/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/I2S_DMA_Target/Makefile
+++ b/Examples/MAX78000/I2S_DMA_Target/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/I2S_DMA_Target/README.md b/Examples/MAX78000/I2S_DMA_Target/README.md
index 32ca2cfc82..8dd4868288 100644
--- a/Examples/MAX78000/I2S_DMA_Target/README.md
+++ b/Examples/MAX78000/I2S_DMA_Target/README.md
@@ -6,7 +6,7 @@ This application demonstrates simultaneous CODEC recording and playback using DM
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/I2S_DMA_Target/project.mk b/Examples/MAX78000/I2S_DMA_Target/project.mk
index f85eff39e0..07321dca51 100644
--- a/Examples/MAX78000/I2S_DMA_Target/project.mk
+++ b/Examples/MAX78000/I2S_DMA_Target/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
@@ -12,6 +12,6 @@
# This example is only compatible with the FTHR board,
# so we override the BOARD value to hard-set it.
ifneq ($(BOARD),FTHR_RevA)
-$(error ERR_NOTSUPPORTED: This project is only supported on the MAX78000FTHR board. See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages)
+$(error ERR_NOTSUPPORTED: This project is only supported on the MAX78000FTHR board. See https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages)
endif
diff --git a/Examples/MAX78000/ICC/.vscode/README.md b/Examples/MAX78000/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ICC/.vscode/README.md
+++ b/Examples/MAX78000/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ICC/.vscode/settings.json b/Examples/MAX78000/ICC/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/ICC/.vscode/settings.json
+++ b/Examples/MAX78000/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/ICC/Makefile b/Examples/MAX78000/ICC/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/ICC/Makefile
+++ b/Examples/MAX78000/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ICC/README.md b/Examples/MAX78000/ICC/README.md
index 13403fe7f2..4e7b2757f8 100644
--- a/Examples/MAX78000/ICC/README.md
+++ b/Examples/MAX78000/ICC/README.md
@@ -11,11 +11,11 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/ICC/project.mk b/Examples/MAX78000/ICC/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/ICC/project.mk
+++ b/Examples/MAX78000/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/ImgCapture/.vscode/README.md b/Examples/MAX78000/ImgCapture/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/ImgCapture/.vscode/README.md
+++ b/Examples/MAX78000/ImgCapture/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/ImgCapture/.vscode/settings.json b/Examples/MAX78000/ImgCapture/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/ImgCapture/.vscode/settings.json
+++ b/Examples/MAX78000/ImgCapture/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/ImgCapture/Makefile b/Examples/MAX78000/ImgCapture/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/ImgCapture/Makefile
+++ b/Examples/MAX78000/ImgCapture/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/ImgCapture/README.md b/Examples/MAX78000/ImgCapture/README.md
index 35903b1e91..c00c275295 100644
--- a/Examples/MAX78000/ImgCapture/README.md
+++ b/Examples/MAX78000/ImgCapture/README.md
@@ -23,11 +23,11 @@ It supports the following output destinations:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
#### Enabling Firmware Features
diff --git a/Examples/MAX78000/ImgCapture/project.mk b/Examples/MAX78000/ImgCapture/project.mk
index 9339e46a58..949dc36433 100644
--- a/Examples/MAX78000/ImgCapture/project.mk
+++ b/Examples/MAX78000/ImgCapture/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/LP/.vscode/README.md b/Examples/MAX78000/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/LP/.vscode/README.md
+++ b/Examples/MAX78000/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/LP/.vscode/settings.json b/Examples/MAX78000/LP/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/LP/.vscode/settings.json
+++ b/Examples/MAX78000/LP/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/LP/Makefile b/Examples/MAX78000/LP/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/LP/Makefile
+++ b/Examples/MAX78000/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/LP/README.md b/Examples/MAX78000/LP/README.md
index c8e2a4e01c..7d0839a414 100644
--- a/Examples/MAX78000/LP/README.md
+++ b/Examples/MAX78000/LP/README.md
@@ -17,11 +17,11 @@ Following modes can be tested:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/LP/project.mk b/Examples/MAX78000/LP/project.mk
index 5a69c45252..5262c77839 100644
--- a/Examples/MAX78000/LP/project.mk
+++ b/Examples/MAX78000/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/LPCMP/.vscode/README.md b/Examples/MAX78000/LPCMP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/LPCMP/.vscode/README.md
+++ b/Examples/MAX78000/LPCMP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/LPCMP/.vscode/settings.json b/Examples/MAX78000/LPCMP/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/LPCMP/.vscode/settings.json
+++ b/Examples/MAX78000/LPCMP/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/LPCMP/Makefile b/Examples/MAX78000/LPCMP/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/LPCMP/Makefile
+++ b/Examples/MAX78000/LPCMP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/LPCMP/README.md b/Examples/MAX78000/LPCMP/README.md
index 10b25eacfe..04eb982f14 100644
--- a/Examples/MAX78000/LPCMP/README.md
+++ b/Examples/MAX78000/LPCMP/README.md
@@ -8,11 +8,11 @@ The example is configured to use two analog channels as the negative and positiv
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/LPCMP/project.mk b/Examples/MAX78000/LPCMP/project.mk
index 5a69c45252..5262c77839 100644
--- a/Examples/MAX78000/LPCMP/project.mk
+++ b/Examples/MAX78000/LPCMP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/Library_Generate/.vscode/README.md b/Examples/MAX78000/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX78000/Library_Generate/.vscode/README.md
+++ b/Examples/MAX78000/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX78000/Library_Generate/Makefile b/Examples/MAX78000/Library_Generate/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/Library_Generate/Makefile
+++ b/Examples/MAX78000/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/Library_Generate/README.md b/Examples/MAX78000/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX78000/Library_Generate/README.md
+++ b/Examples/MAX78000/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/Library_Generate/project.mk b/Examples/MAX78000/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX78000/Library_Generate/project.mk
+++ b/Examples/MAX78000/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/Library_Use/.vscode/README.md b/Examples/MAX78000/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/Library_Use/.vscode/README.md
+++ b/Examples/MAX78000/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/Library_Use/.vscode/settings.json b/Examples/MAX78000/Library_Use/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/Library_Use/.vscode/settings.json
+++ b/Examples/MAX78000/Library_Use/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/Library_Use/Makefile b/Examples/MAX78000/Library_Use/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/Library_Use/Makefile
+++ b/Examples/MAX78000/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/Library_Use/README.md b/Examples/MAX78000/Library_Use/README.md
index b8fb34fc8a..bac6c462a0 100644
--- a/Examples/MAX78000/Library_Use/README.md
+++ b/Examples/MAX78000/Library_Use/README.md
@@ -9,11 +9,11 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-This example supports all available MAX78000 evaluation platforms but comes _pre-configured_ for the MAX78000EVKIT by default. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
+This example supports all available MAX78000 evaluation platforms but comes _pre-configured_ for the MAX78000EVKIT by default. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) for instructions on how to configure the project for a different board.
## Required Connections
diff --git a/Examples/MAX78000/Library_Use/project.mk b/Examples/MAX78000/Library_Use/project.mk
index 09b4730fb2..d1767c7cef 100644
--- a/Examples/MAX78000/Library_Use/project.mk
+++ b/Examples/MAX78000/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/Pulse_Train/.vscode/README.md b/Examples/MAX78000/Pulse_Train/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/Pulse_Train/.vscode/README.md
+++ b/Examples/MAX78000/Pulse_Train/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/Pulse_Train/.vscode/settings.json b/Examples/MAX78000/Pulse_Train/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/Pulse_Train/.vscode/settings.json
+++ b/Examples/MAX78000/Pulse_Train/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/Pulse_Train/Makefile b/Examples/MAX78000/Pulse_Train/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/Pulse_Train/Makefile
+++ b/Examples/MAX78000/Pulse_Train/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/Pulse_Train/README.md b/Examples/MAX78000/Pulse_Train/README.md
index b9ac7be34a..dfc6bdd1aa 100644
--- a/Examples/MAX78000/Pulse_Train/README.md
+++ b/Examples/MAX78000/Pulse_Train/README.md
@@ -14,11 +14,11 @@ On the featherboard, the continuous bit pattern and square wave signals are outp
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/Pulse_Train/project.mk b/Examples/MAX78000/Pulse_Train/project.mk
index d6fc1c4a72..7d1d242673 100644
--- a/Examples/MAX78000/Pulse_Train/project.mk
+++ b/Examples/MAX78000/Pulse_Train/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/RTC/.vscode/README.md b/Examples/MAX78000/RTC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/RTC/.vscode/README.md
+++ b/Examples/MAX78000/RTC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/RTC/.vscode/settings.json b/Examples/MAX78000/RTC/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/RTC/.vscode/settings.json
+++ b/Examples/MAX78000/RTC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/RTC/Makefile b/Examples/MAX78000/RTC/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/RTC/Makefile
+++ b/Examples/MAX78000/RTC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/RTC/README.md b/Examples/MAX78000/RTC/README.md
index cafd7a6287..89e0d63c70 100644
--- a/Examples/MAX78000/RTC/README.md
+++ b/Examples/MAX78000/RTC/README.md
@@ -13,11 +13,11 @@ Pressing SW2 will output the current value of the RTC to the console UART.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/RTC/project.mk b/Examples/MAX78000/RTC/project.mk
index 5a69c45252..5262c77839 100644
--- a/Examples/MAX78000/RTC/project.mk
+++ b/Examples/MAX78000/RTC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/RTC_Backup/.vscode/README.md b/Examples/MAX78000/RTC_Backup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/RTC_Backup/.vscode/README.md
+++ b/Examples/MAX78000/RTC_Backup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/RTC_Backup/.vscode/settings.json b/Examples/MAX78000/RTC_Backup/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/RTC_Backup/.vscode/settings.json
+++ b/Examples/MAX78000/RTC_Backup/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/RTC_Backup/Makefile b/Examples/MAX78000/RTC_Backup/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/RTC_Backup/Makefile
+++ b/Examples/MAX78000/RTC_Backup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/RTC_Backup/README.md b/Examples/MAX78000/RTC_Backup/README.md
index 6bc371c1e2..ffe0e1c5da 100644
--- a/Examples/MAX78000/RTC_Backup/README.md
+++ b/Examples/MAX78000/RTC_Backup/README.md
@@ -8,11 +8,11 @@ The RTC time-of-day alarm is used to wake the device from backup mode every TIME
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX78000/RTC_Backup/project.mk b/Examples/MAX78000/RTC_Backup/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/RTC_Backup/project.mk
+++ b/Examples/MAX78000/RTC_Backup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/RV_ARM_Loader/.vscode/README.md b/Examples/MAX78000/RV_ARM_Loader/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/RV_ARM_Loader/.vscode/README.md
+++ b/Examples/MAX78000/RV_ARM_Loader/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/RV_ARM_Loader/.vscode/settings.json b/Examples/MAX78000/RV_ARM_Loader/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/RV_ARM_Loader/.vscode/settings.json
+++ b/Examples/MAX78000/RV_ARM_Loader/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/RV_ARM_Loader/Makefile b/Examples/MAX78000/RV_ARM_Loader/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/RV_ARM_Loader/Makefile
+++ b/Examples/MAX78000/RV_ARM_Loader/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/RV_ARM_Loader/README.md b/Examples/MAX78000/RV_ARM_Loader/README.md
index 75bf444cc2..68a1e5f2d0 100644
--- a/Examples/MAX78000/RV_ARM_Loader/README.md
+++ b/Examples/MAX78000/RV_ARM_Loader/README.md
@@ -8,7 +8,7 @@ RV_ARM_Loader runs on the ARM core to load the RISCV code space, setup the RISCV
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/RV_ARM_Loader/project.mk b/Examples/MAX78000/RV_ARM_Loader/project.mk
index 5a80a78f61..d1f655ba86 100644
--- a/Examples/MAX78000/RV_ARM_Loader/project.mk
+++ b/Examples/MAX78000/RV_ARM_Loader/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/SDHC_FTHR/.vscode/README.md b/Examples/MAX78000/SDHC_FTHR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/SDHC_FTHR/.vscode/README.md
+++ b/Examples/MAX78000/SDHC_FTHR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/SDHC_FTHR/.vscode/settings.json b/Examples/MAX78000/SDHC_FTHR/.vscode/settings.json
index a8c1a65c3e..59e88f5ddc 100755
--- a/Examples/MAX78000/SDHC_FTHR/.vscode/settings.json
+++ b/Examples/MAX78000/SDHC_FTHR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -62,6 +63,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/SDHC_FTHR/Makefile b/Examples/MAX78000/SDHC_FTHR/Makefile
index 5d46422095..6a71f2f2f9 100644
--- a/Examples/MAX78000/SDHC_FTHR/Makefile
+++ b/Examples/MAX78000/SDHC_FTHR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/SDHC_FTHR/README.md b/Examples/MAX78000/SDHC_FTHR/README.md
index 4bbf3354c7..151090be09 100644
--- a/Examples/MAX78000/SDHC_FTHR/README.md
+++ b/Examples/MAX78000/SDHC_FTHR/README.md
@@ -6,11 +6,11 @@ This example demonstrates the SDHC FAT Filesystem. The terminal prompts with a l
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000FTHR. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000FTHR. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX78000/SDHC_FTHR/project.mk b/Examples/MAX78000/SDHC_FTHR/project.mk
index 5b132c3b3b..3a225d92c6 100644
--- a/Examples/MAX78000/SDHC_FTHR/project.mk
+++ b/Examples/MAX78000/SDHC_FTHR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/SPI/.vscode/README.md b/Examples/MAX78000/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/SPI/.vscode/README.md
+++ b/Examples/MAX78000/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/SPI/.vscode/settings.json b/Examples/MAX78000/SPI/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/SPI/.vscode/settings.json
+++ b/Examples/MAX78000/SPI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/SPI/Makefile b/Examples/MAX78000/SPI/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/SPI/Makefile
+++ b/Examples/MAX78000/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/SPI/README.md b/Examples/MAX78000/SPI/README.md
index c9bf75c827..a70a8d2546 100644
--- a/Examples/MAX78000/SPI/README.md
+++ b/Examples/MAX78000/SPI/README.md
@@ -8,11 +8,11 @@ By default, the example performs blocking SPI transactions. To switch to non-bl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/SPI/project.mk b/Examples/MAX78000/SPI/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/SPI/project.mk
+++ b/Examples/MAX78000/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/TFT_Demo/.vscode/README.md b/Examples/MAX78000/TFT_Demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/TFT_Demo/.vscode/README.md
+++ b/Examples/MAX78000/TFT_Demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/TFT_Demo/.vscode/settings.json b/Examples/MAX78000/TFT_Demo/.vscode/settings.json
index f3585d39ad..a51700c2ca 100755
--- a/Examples/MAX78000/TFT_Demo/.vscode/settings.json
+++ b/Examples/MAX78000/TFT_Demo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/Core/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include/dsp",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/TFT_Demo/Makefile b/Examples/MAX78000/TFT_Demo/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/TFT_Demo/Makefile
+++ b/Examples/MAX78000/TFT_Demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/TFT_Demo/README.md b/Examples/MAX78000/TFT_Demo/README.md
index 37d6176864..4b30c5ce9a 100644
--- a/Examples/MAX78000/TFT_Demo/README.md
+++ b/Examples/MAX78000/TFT_Demo/README.md
@@ -33,11 +33,11 @@ bitmap files has to be encoded 8 bits (256 color bitmap).
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
### MAX78000 Feather operations
diff --git a/Examples/MAX78000/TFT_Demo/project.mk b/Examples/MAX78000/TFT_Demo/project.mk
index 5c47b97055..a474421aa0 100644
--- a/Examples/MAX78000/TFT_Demo/project.mk
+++ b/Examples/MAX78000/TFT_Demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/TFT_Demo/resources/tft_fthr/bmp/README.md b/Examples/MAX78000/TFT_Demo/resources/tft_fthr/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78000/TFT_Demo/resources/tft_fthr/bmp/README.md
+++ b/Examples/MAX78000/TFT_Demo/resources/tft_fthr/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78000/TMR/.vscode/README.md b/Examples/MAX78000/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/TMR/.vscode/README.md
+++ b/Examples/MAX78000/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/TMR/.vscode/settings.json b/Examples/MAX78000/TMR/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/TMR/.vscode/settings.json
+++ b/Examples/MAX78000/TMR/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/TMR/Makefile b/Examples/MAX78000/TMR/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/TMR/Makefile
+++ b/Examples/MAX78000/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/TMR/README.md b/Examples/MAX78000/TMR/README.md
index 023cfc2d3d..7b20bbe37b 100644
--- a/Examples/MAX78000/TMR/README.md
+++ b/Examples/MAX78000/TMR/README.md
@@ -12,11 +12,11 @@ Push PB1/SW1 to start the PWM and continuous timers and PB2/SW2 to start the one
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX78000/TMR/project.mk b/Examples/MAX78000/TMR/project.mk
index 5a69c45252..5262c77839 100644
--- a/Examples/MAX78000/TMR/project.mk
+++ b/Examples/MAX78000/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/TRNG/.vscode/README.md b/Examples/MAX78000/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/TRNG/.vscode/README.md
+++ b/Examples/MAX78000/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/TRNG/.vscode/settings.json b/Examples/MAX78000/TRNG/.vscode/settings.json
index c21f97aa5a..0c015ad737 100755
--- a/Examples/MAX78000/TRNG/.vscode/settings.json
+++ b/Examples/MAX78000/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78000/TRNG/Makefile b/Examples/MAX78000/TRNG/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/TRNG/Makefile
+++ b/Examples/MAX78000/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/TRNG/README.md b/Examples/MAX78000/TRNG/README.md
index 84d1492d7e..50fd8d0264 100644
--- a/Examples/MAX78000/TRNG/README.md
+++ b/Examples/MAX78000/TRNG/README.md
@@ -6,11 +6,11 @@ The true random number generator (TRNG) hardware is exercised in this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/TRNG/project.mk b/Examples/MAX78000/TRNG/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78000/TRNG/project.mk
+++ b/Examples/MAX78000/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/Temp_Monitor/.vscode/README.md b/Examples/MAX78000/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX78000/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/Temp_Monitor/.vscode/settings.json b/Examples/MAX78000/Temp_Monitor/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX78000/Temp_Monitor/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/Temp_Monitor/Makefile b/Examples/MAX78000/Temp_Monitor/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/Temp_Monitor/Makefile
+++ b/Examples/MAX78000/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/Temp_Monitor/README.md b/Examples/MAX78000/Temp_Monitor/README.md
index 2ef8dd3c26..73e6c01b9a 100644
--- a/Examples/MAX78000/Temp_Monitor/README.md
+++ b/Examples/MAX78000/Temp_Monitor/README.md
@@ -14,11 +14,11 @@ The temperature limits, flash storage page, and RTC time-of-day alarm period are
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX78000/Temp_Monitor/project.mk b/Examples/MAX78000/Temp_Monitor/project.mk
index 5c8e417903..7f5fa2bf60 100644
--- a/Examples/MAX78000/Temp_Monitor/project.mk
+++ b/Examples/MAX78000/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78000/UART/.vscode/README.md b/Examples/MAX78000/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/UART/.vscode/README.md
+++ b/Examples/MAX78000/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/UART/.vscode/settings.json b/Examples/MAX78000/UART/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/UART/.vscode/settings.json
+++ b/Examples/MAX78000/UART/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/UART/Makefile b/Examples/MAX78000/UART/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/UART/Makefile
+++ b/Examples/MAX78000/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/UART/README.md b/Examples/MAX78000/UART/README.md
index b40498bb8b..a6ae13cca2 100644
--- a/Examples/MAX78000/UART/README.md
+++ b/Examples/MAX78000/UART/README.md
@@ -6,11 +6,11 @@ This application demonstrates a UART transaction between two serial ports on the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX78000/UART/project.mk b/Examples/MAX78000/UART/project.mk
index 5a69c45252..5262c77839 100644
--- a/Examples/MAX78000/UART/project.mk
+++ b/Examples/MAX78000/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/UCL/README.md b/Examples/MAX78000/UCL/README.md
index 3fdcadf241..94d28d3086 100644
--- a/Examples/MAX78000/UCL/README.md
+++ b/Examples/MAX78000/UCL/README.md
@@ -8,11 +8,11 @@ TODO:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Setup
diff --git a/Examples/MAX78000/UCL/project.mk b/Examples/MAX78000/UCL/project.mk
index 715f443db7..5eb82f2abd 100644
--- a/Examples/MAX78000/UCL/project.mk
+++ b/Examples/MAX78000/UCL/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#BOARD=FTHR_RevA
# ^ For example, you can uncomment this line to make the
diff --git a/Examples/MAX78000/WUT/.vscode/README.md b/Examples/MAX78000/WUT/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/WUT/.vscode/README.md
+++ b/Examples/MAX78000/WUT/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/WUT/.vscode/settings.json b/Examples/MAX78000/WUT/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/WUT/.vscode/settings.json
+++ b/Examples/MAX78000/WUT/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/WUT/Makefile b/Examples/MAX78000/WUT/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/WUT/Makefile
+++ b/Examples/MAX78000/WUT/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/WUT/README.md b/Examples/MAX78000/WUT/README.md
index a7036323a3..5b6391ca46 100644
--- a/Examples/MAX78000/WUT/README.md
+++ b/Examples/MAX78000/WUT/README.md
@@ -6,11 +6,11 @@ This example shows how to wake up a device after it is asleep with a wake up tim
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/WUT/project.mk b/Examples/MAX78000/WUT/project.mk
index 5a69c45252..5262c77839 100644
--- a/Examples/MAX78000/WUT/project.mk
+++ b/Examples/MAX78000/WUT/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/Watchdog/.vscode/README.md b/Examples/MAX78000/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/Watchdog/.vscode/README.md
+++ b/Examples/MAX78000/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/Watchdog/.vscode/settings.json b/Examples/MAX78000/Watchdog/.vscode/settings.json
index a81b27e361..7e02d88462 100755
--- a/Examples/MAX78000/Watchdog/.vscode/settings.json
+++ b/Examples/MAX78000/Watchdog/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78000/Watchdog/Makefile b/Examples/MAX78000/Watchdog/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/Watchdog/Makefile
+++ b/Examples/MAX78000/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/Watchdog/README.md b/Examples/MAX78000/Watchdog/README.md
index 5b20673b20..48580c413a 100644
--- a/Examples/MAX78000/Watchdog/README.md
+++ b/Examples/MAX78000/Watchdog/README.md
@@ -11,11 +11,11 @@ When the application begins, it initializes and starts the watchdog timer. The
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections:
diff --git a/Examples/MAX78000/Watchdog/project.mk b/Examples/MAX78000/Watchdog/project.mk
index 5a69c45252..5262c77839 100644
--- a/Examples/MAX78000/Watchdog/project.mk
+++ b/Examples/MAX78000/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78000/WearLeveling/.vscode/README.md b/Examples/MAX78000/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78000/WearLeveling/.vscode/README.md
+++ b/Examples/MAX78000/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78000/WearLeveling/.vscode/settings.json b/Examples/MAX78000/WearLeveling/.vscode/settings.json
index 8302c8d2e5..7d5f22bd57 100755
--- a/Examples/MAX78000/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX78000/WearLeveling/.vscode/settings.json
@@ -48,13 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/CLI/inc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/littlefs",
@@ -67,6 +67,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -74,7 +75,6 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/CLI/src",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/littlefs",
diff --git a/Examples/MAX78000/WearLeveling/Makefile b/Examples/MAX78000/WearLeveling/Makefile
index 4655c4955e..44f8336006 100644
--- a/Examples/MAX78000/WearLeveling/Makefile
+++ b/Examples/MAX78000/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78000/WearLeveling/README.md b/Examples/MAX78000/WearLeveling/README.md
index 41b5c8afdb..75f7ca7e2a 100644
--- a/Examples/MAX78000/WearLeveling/README.md
+++ b/Examples/MAX78000/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78000EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX78000/WearLeveling/project.mk b/Examples/MAX78000/WearLeveling/project.mk
index 16e450a8b6..8b1313bcf1 100644
--- a/Examples/MAX78000/WearLeveling/project.mk
+++ b/Examples/MAX78000/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ADC/.vscode/README.md b/Examples/MAX78002/ADC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ADC/.vscode/README.md
+++ b/Examples/MAX78002/ADC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ADC/.vscode/settings.json b/Examples/MAX78002/ADC/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/ADC/.vscode/settings.json
+++ b/Examples/MAX78002/ADC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/ADC/Makefile b/Examples/MAX78002/ADC/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/ADC/Makefile
+++ b/Examples/MAX78002/ADC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ADC/README.md b/Examples/MAX78002/ADC/README.md
index a436835f8d..63bccfd04e 100644
--- a/Examples/MAX78002/ADC/README.md
+++ b/Examples/MAX78002/ADC/README.md
@@ -12,7 +12,7 @@ Beware which Port 2 (channel) you use. Some of the Port 2 pins are connected to
### Project Usage
-Universal instructions on building, flashing, and debugging this project on supported boards can be found in the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/).
+Universal instructions on building, flashing, and debugging this project on supported boards can be found in the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/).
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/ADC/main.c b/Examples/MAX78002/ADC/main.c
index 90b9e3e018..c093c8f9f4 100644
--- a/Examples/MAX78002/ADC/main.c
+++ b/Examples/MAX78002/ADC/main.c
@@ -30,6 +30,7 @@
#include
#include "mxc_errors.h"
+#include "nvic_table.h"
#include "adc.h"
#include "dma.h"
#include "led.h"
diff --git a/Examples/MAX78002/ADC/project.mk b/Examples/MAX78002/ADC/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/ADC/project.mk
+++ b/Examples/MAX78002/ADC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/AES/.vscode/README.md b/Examples/MAX78002/AES/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/AES/.vscode/README.md
+++ b/Examples/MAX78002/AES/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/AES/.vscode/settings.json b/Examples/MAX78002/AES/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/AES/.vscode/settings.json
+++ b/Examples/MAX78002/AES/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/AES/Makefile b/Examples/MAX78002/AES/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/AES/Makefile
+++ b/Examples/MAX78002/AES/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/AES/README.md b/Examples/MAX78002/AES/README.md
index f8901f61d3..226ebabbc4 100644
--- a/Examples/MAX78002/AES/README.md
+++ b/Examples/MAX78002/AES/README.md
@@ -6,7 +6,7 @@ This application demonstrates both encryption and decryption using AES. A block
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/AES/project.mk b/Examples/MAX78002/AES/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/AES/project.mk
+++ b/Examples/MAX78002/AES/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/README.md b/Examples/MAX78002/ARM-DSP/README.md
index 572808f9ef..9bb2d50bed 100644
--- a/Examples/MAX78002/ARM-DSP/README.md
+++ b/Examples/MAX78002/ARM-DSP/README.md
@@ -14,7 +14,7 @@ Development with Visual Studio Code is also supported. See [VSCode-Maxim](https
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_bayes_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_bayes_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_bayes_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_bayes_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_bayes_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_bayes_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_bayes_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_bayes_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
index 3a3dcde38e..30f548bc88 100644
--- a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
+++ b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/arm_class_marks_example_f32.c
@@ -139,7 +139,7 @@ uint32_t student_num;
* Main f32 test function. It returns maximum marks secured and student number
* ------------------------------------------------------------------------------- */
-int32_t main()
+int main()
{
#ifndef USE_STATIC_INIT
diff --git a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_convolution_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_convolution_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_convolution_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_convolution_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_convolution_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_convolution_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_convolution_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_convolution_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/Makefile b/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/project.mk b/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_fir_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_fir_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_fir_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_fir_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_fir_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_fir_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_fir_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_fir_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_matrix_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_matrix_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_matrix_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_matrix_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_matrix_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_matrix_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_matrix_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_matrix_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_svm_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_svm_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_svm_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_svm_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_svm_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_svm_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_svm_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_svm_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/README.md
+++ b/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/settings.json b/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/settings.json
index 4ba76087f5..78c0cd7758 100755
--- a/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/settings.json
+++ b/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -64,6 +65,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ARM-DSP/arm_variance_example/Makefile b/Examples/MAX78002/ARM-DSP/arm_variance_example/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/ARM-DSP/arm_variance_example/Makefile
+++ b/Examples/MAX78002/ARM-DSP/arm_variance_example/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ARM-DSP/arm_variance_example/project.mk b/Examples/MAX78002/ARM-DSP/arm_variance_example/project.mk
index b7227d1ffb..f3fd136c25 100644
--- a/Examples/MAX78002/ARM-DSP/arm_variance_example/project.mk
+++ b/Examples/MAX78002/ARM-DSP/arm_variance_example/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/README.md b/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/README.md
+++ b/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/settings.json b/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/settings.json
+++ b/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/CNN/cifar-100-effnet2/Makefile b/Examples/MAX78002/CNN/cifar-100-effnet2/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/CNN/cifar-100-effnet2/Makefile
+++ b/Examples/MAX78002/CNN/cifar-100-effnet2/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CNN/cifar-100-effnet2/project.mk b/Examples/MAX78002/CNN/cifar-100-effnet2/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78002/CNN/cifar-100-effnet2/project.mk
+++ b/Examples/MAX78002/CNN/cifar-100-effnet2/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/CNN/cifar-100-mobilenet-v2-0.75/project.mk b/Examples/MAX78002/CNN/cifar-100-mobilenet-v2-0.75/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78002/CNN/cifar-100-mobilenet-v2-0.75/project.mk
+++ b/Examples/MAX78002/CNN/cifar-100-mobilenet-v2-0.75/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/CNN/facial_recognition/.vscode/README.md b/Examples/MAX78002/CNN/facial_recognition/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CNN/facial_recognition/.vscode/README.md
+++ b/Examples/MAX78002/CNN/facial_recognition/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CNN/facial_recognition/.vscode/settings.json b/Examples/MAX78002/CNN/facial_recognition/.vscode/settings.json
index 6b910a69fc..a955ea6dc7 100755
--- a/Examples/MAX78002/CNN/facial_recognition/.vscode/settings.json
+++ b/Examples/MAX78002/CNN/facial_recognition/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/Core/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include/dsp",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/CNN/facial_recognition/Makefile b/Examples/MAX78002/CNN/facial_recognition/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/CNN/facial_recognition/Makefile
+++ b/Examples/MAX78002/CNN/facial_recognition/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CNN/imagenet-riscv/.vscode/README.md b/Examples/MAX78002/CNN/imagenet-riscv/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CNN/imagenet-riscv/.vscode/README.md
+++ b/Examples/MAX78002/CNN/imagenet-riscv/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CNN/imagenet-riscv/.vscode/settings.json b/Examples/MAX78002/CNN/imagenet-riscv/.vscode/settings.json
index 5845bd5098..6938d699d8 100755
--- a/Examples/MAX78002/CNN/imagenet-riscv/.vscode/settings.json
+++ b/Examples/MAX78002/CNN/imagenet-riscv/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/CNN/imagenet/.vscode/README.md b/Examples/MAX78002/CNN/imagenet/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CNN/imagenet/.vscode/README.md
+++ b/Examples/MAX78002/CNN/imagenet/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CNN/imagenet/.vscode/settings.json b/Examples/MAX78002/CNN/imagenet/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/CNN/imagenet/.vscode/settings.json
+++ b/Examples/MAX78002/CNN/imagenet/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/CNN/imagenet/Makefile b/Examples/MAX78002/CNN/imagenet/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/CNN/imagenet/Makefile
+++ b/Examples/MAX78002/CNN/imagenet/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CNN/imagenet/project.mk b/Examples/MAX78002/CNN/imagenet/project.mk
index a2fb5a9f96..3f6d37b542 100644
--- a/Examples/MAX78002/CNN/imagenet/project.mk
+++ b/Examples/MAX78002/CNN/imagenet/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/CNN/kinetics/.vscode/README.md b/Examples/MAX78002/CNN/kinetics/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CNN/kinetics/.vscode/README.md
+++ b/Examples/MAX78002/CNN/kinetics/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CNN/kinetics/.vscode/settings.json b/Examples/MAX78002/CNN/kinetics/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/CNN/kinetics/.vscode/settings.json
+++ b/Examples/MAX78002/CNN/kinetics/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/CNN/kinetics/Makefile b/Examples/MAX78002/CNN/kinetics/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/CNN/kinetics/Makefile
+++ b/Examples/MAX78002/CNN/kinetics/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CNN/kws20_demo/.vscode/README.md b/Examples/MAX78002/CNN/kws20_demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CNN/kws20_demo/.vscode/README.md
+++ b/Examples/MAX78002/CNN/kws20_demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CNN/kws20_demo/.vscode/settings.json b/Examples/MAX78002/CNN/kws20_demo/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/CNN/kws20_demo/.vscode/settings.json
+++ b/Examples/MAX78002/CNN/kws20_demo/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/CNN/kws20_demo/Makefile b/Examples/MAX78002/CNN/kws20_demo/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/CNN/kws20_demo/Makefile
+++ b/Examples/MAX78002/CNN/kws20_demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CNN/kws20_demo/README.md b/Examples/MAX78002/CNN/kws20_demo/README.md
index 48209c8afc..6e7e82a18a 100644
--- a/Examples/MAX78002/CNN/kws20_demo/README.md
+++ b/Examples/MAX78002/CNN/kws20_demo/README.md
@@ -21,11 +21,11 @@ To improve the unknown detection, the model in version 3.2 is trained with an ad
### Project Usage
-Instructions on building, flashing, and debugging MSDK projects can be found in the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/).
+Instructions on building, flashing, and debugging MSDK projects can be found in the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/).
### Build Notes
-See ["Build System"](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system) in the MSDK User Guide for detailed documentation. The section below contains additional notes on options that are specific to this project.
+See ["Build System"](https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system) in the MSDK User Guide for detailed documentation. The section below contains additional notes on options that are specific to this project.
This project offers the option to enable or disable the TFT display in [project.mk](project.mk) via the `ENABLE_TFT` build configuration variable.
diff --git a/Examples/MAX78002/CNN/kws20_demo/project.mk b/Examples/MAX78002/CNN/kws20_demo/project.mk
index 9b8a1ce855..adc3004818 100644
--- a/Examples/MAX78002/CNN/kws20_demo/project.mk
+++ b/Examples/MAX78002/CNN/kws20_demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78002/CNN/kws20_demo/tft/bmp/README.md b/Examples/MAX78002/CNN/kws20_demo/tft/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78002/CNN/kws20_demo/tft/bmp/README.md
+++ b/Examples/MAX78002/CNN/kws20_demo/tft/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/README.md b/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/README.md
+++ b/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/settings.json b/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/settings.json
+++ b/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/CNN/mobilefacenet-112/Makefile b/Examples/MAX78002/CNN/mobilefacenet-112/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/CNN/mobilefacenet-112/Makefile
+++ b/Examples/MAX78002/CNN/mobilefacenet-112/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/README.md b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/README.md
+++ b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/settings.json b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/settings.json
+++ b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/Makefile b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/Makefile
+++ b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/README.md b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/README.md
index 601a8fc32c..24ef65bae2 100644
--- a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/README.md
+++ b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/README.md
@@ -8,7 +8,7 @@ After initialization, the demo program will continuously capture a 320x256 image
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/src/cnn/nms.c b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/src/cnn/nms.c
index a31f947b41..a05e2c3a52 100644
--- a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/src/cnn/nms.c
+++ b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/src/cnn/nms.c
@@ -26,6 +26,7 @@
#include "nms.h"
#include "rtc.h"
#include "tft_utils.h"
+#include "mxc_delay.h"
#define SQUARE(x) ((x) * (x))
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
diff --git a/Examples/MAX78002/CRC/.vscode/README.md b/Examples/MAX78002/CRC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CRC/.vscode/README.md
+++ b/Examples/MAX78002/CRC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CRC/.vscode/settings.json b/Examples/MAX78002/CRC/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/CRC/.vscode/settings.json
+++ b/Examples/MAX78002/CRC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/CRC/Makefile b/Examples/MAX78002/CRC/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/CRC/Makefile
+++ b/Examples/MAX78002/CRC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CRC/README.md b/Examples/MAX78002/CRC/README.md
index 26b72691f5..00b0616775 100644
--- a/Examples/MAX78002/CRC/README.md
+++ b/Examples/MAX78002/CRC/README.md
@@ -6,7 +6,7 @@ This example demonstrates the use of the HW CRC calculator. The example first g
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/CRC/project.mk b/Examples/MAX78002/CRC/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/CRC/project.mk
+++ b/Examples/MAX78002/CRC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/CSI2/.vscode/README.md b/Examples/MAX78002/CSI2/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CSI2/.vscode/README.md
+++ b/Examples/MAX78002/CSI2/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CSI2/.vscode/settings.json b/Examples/MAX78002/CSI2/.vscode/settings.json
index 6b910a69fc..a955ea6dc7 100755
--- a/Examples/MAX78002/CSI2/.vscode/settings.json
+++ b/Examples/MAX78002/CSI2/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/Core/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include/dsp",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/CSI2/Makefile b/Examples/MAX78002/CSI2/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/CSI2/Makefile
+++ b/Examples/MAX78002/CSI2/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CSI2/README.md b/Examples/MAX78002/CSI2/README.md
index e0a3ff643e..d07cbb1503 100644
--- a/Examples/MAX78002/CSI2/README.md
+++ b/Examples/MAX78002/CSI2/README.md
@@ -8,7 +8,7 @@ Use the [utils/console.py](utils/console.py) script to grab the camera data and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/CSI2/project.mk b/Examples/MAX78002/CSI2/project.mk
index 331c0e2e8d..48fd4ceea6 100644
--- a/Examples/MAX78002/CSI2/project.mk
+++ b/Examples/MAX78002/CSI2/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/CameraIF/.vscode/README.md b/Examples/MAX78002/CameraIF/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CameraIF/.vscode/README.md
+++ b/Examples/MAX78002/CameraIF/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CameraIF/.vscode/settings.json b/Examples/MAX78002/CameraIF/.vscode/settings.json
index 6b910a69fc..a955ea6dc7 100755
--- a/Examples/MAX78002/CameraIF/.vscode/settings.json
+++ b/Examples/MAX78002/CameraIF/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/Core/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include/dsp",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/CameraIF/Makefile b/Examples/MAX78002/CameraIF/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/CameraIF/Makefile
+++ b/Examples/MAX78002/CameraIF/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CameraIF/README.md b/Examples/MAX78002/CameraIF/README.md
index 8616b001e7..8a8597937d 100644
--- a/Examples/MAX78002/CameraIF/README.md
+++ b/Examples/MAX78002/CameraIF/README.md
@@ -8,7 +8,7 @@ Use the pc_utility/grab_image.py script to grab the camera data and create a png
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/CameraIF/pc_utility/README.md b/Examples/MAX78002/CameraIF/pc_utility/README.md
index 499da5e7e7..cbaf951d92 100644
--- a/Examples/MAX78002/CameraIF/pc_utility/README.md
+++ b/Examples/MAX78002/CameraIF/pc_utility/README.md
@@ -17,7 +17,7 @@ The default baudrate is 921600 but if you would like to change it, do not forget
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/CameraIF/project.mk b/Examples/MAX78002/CameraIF/project.mk
index d0ff8d2f11..918d5d08bc 100644
--- a/Examples/MAX78002/CameraIF/project.mk
+++ b/Examples/MAX78002/CameraIF/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/CameraIF_Debayer/.vscode/README.md b/Examples/MAX78002/CameraIF_Debayer/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/CameraIF_Debayer/.vscode/README.md
+++ b/Examples/MAX78002/CameraIF_Debayer/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/CameraIF_Debayer/.vscode/settings.json b/Examples/MAX78002/CameraIF_Debayer/.vscode/settings.json
index 6b910a69fc..a955ea6dc7 100755
--- a/Examples/MAX78002/CameraIF_Debayer/.vscode/settings.json
+++ b/Examples/MAX78002/CameraIF_Debayer/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -56,7 +57,6 @@
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/Core/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include",
"${config:MAXIM_PATH}/Libraries/CMSIS/5.9.0/DSP/Include/dsp",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/CameraIF_Debayer/Makefile b/Examples/MAX78002/CameraIF_Debayer/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/CameraIF_Debayer/Makefile
+++ b/Examples/MAX78002/CameraIF_Debayer/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/CameraIF_Debayer/README.md b/Examples/MAX78002/CameraIF_Debayer/README.md
index a73c84ed4d..98d02afc59 100644
--- a/Examples/MAX78002/CameraIF_Debayer/README.md
+++ b/Examples/MAX78002/CameraIF_Debayer/README.md
@@ -10,7 +10,7 @@ It requires debayering/demosaicking and color correction post-processing algorit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/CameraIF_Debayer/pc_utility/README.md b/Examples/MAX78002/CameraIF_Debayer/pc_utility/README.md
index 286cdcfc8b..ee2f0631ae 100644
--- a/Examples/MAX78002/CameraIF_Debayer/pc_utility/README.md
+++ b/Examples/MAX78002/CameraIF_Debayer/pc_utility/README.md
@@ -13,7 +13,7 @@ to update the board side too.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/CameraIF_Debayer/project.mk b/Examples/MAX78002/CameraIF_Debayer/project.mk
index 82e555e13c..6c493a2d2e 100644
--- a/Examples/MAX78002/CameraIF_Debayer/project.mk
+++ b/Examples/MAX78002/CameraIF_Debayer/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/Coremark/.vscode/README.md b/Examples/MAX78002/Coremark/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/Coremark/.vscode/README.md
+++ b/Examples/MAX78002/Coremark/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/Coremark/.vscode/settings.json b/Examples/MAX78002/Coremark/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/Coremark/.vscode/settings.json
+++ b/Examples/MAX78002/Coremark/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/Coremark/Makefile b/Examples/MAX78002/Coremark/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/Coremark/Makefile
+++ b/Examples/MAX78002/Coremark/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/Coremark/README.md b/Examples/MAX78002/Coremark/README.md
index 62ea37ecf1..e3f18aa7ef 100644
--- a/Examples/MAX78002/Coremark/README.md
+++ b/Examples/MAX78002/Coremark/README.md
@@ -10,7 +10,7 @@ For more information, visit the [CoreMark webpage](https://www.eembc.org/coremar
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/Coremark/project.mk b/Examples/MAX78002/Coremark/project.mk
index 97b3ab9314..9ded809106 100644
--- a/Examples/MAX78002/Coremark/project.mk
+++ b/Examples/MAX78002/Coremark/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78002/DMA/.vscode/README.md b/Examples/MAX78002/DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/DMA/.vscode/README.md
+++ b/Examples/MAX78002/DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/DMA/.vscode/settings.json b/Examples/MAX78002/DMA/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/DMA/.vscode/settings.json
+++ b/Examples/MAX78002/DMA/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/DMA/Makefile b/Examples/MAX78002/DMA/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/DMA/Makefile
+++ b/Examples/MAX78002/DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/DMA/README.md b/Examples/MAX78002/DMA/README.md
index 6a55964580..076b0e99fa 100644
--- a/Examples/MAX78002/DMA/README.md
+++ b/Examples/MAX78002/DMA/README.md
@@ -8,7 +8,7 @@ A second more complex memory-to-memory DMA transaction is then shown that chains
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/DMA/project.mk b/Examples/MAX78002/DMA/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/DMA/project.mk
+++ b/Examples/MAX78002/DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ECC/.vscode/README.md b/Examples/MAX78002/ECC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ECC/.vscode/README.md
+++ b/Examples/MAX78002/ECC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ECC/.vscode/settings.json b/Examples/MAX78002/ECC/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/ECC/.vscode/settings.json
+++ b/Examples/MAX78002/ECC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/ECC/Makefile b/Examples/MAX78002/ECC/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/ECC/Makefile
+++ b/Examples/MAX78002/ECC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ECC/README.md b/Examples/MAX78002/ECC/README.md
index 6c5507e6f2..2e4eb731cf 100644
--- a/Examples/MAX78002/ECC/README.md
+++ b/Examples/MAX78002/ECC/README.md
@@ -10,7 +10,7 @@ That same word is modified again to contain a double bit error. The word is rea
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/ECC/project.mk b/Examples/MAX78002/ECC/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/ECC/project.mk
+++ b/Examples/MAX78002/ECC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/EEPROM_Emulator/.vscode/README.md b/Examples/MAX78002/EEPROM_Emulator/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/EEPROM_Emulator/.vscode/README.md
+++ b/Examples/MAX78002/EEPROM_Emulator/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/EEPROM_Emulator/.vscode/settings.json b/Examples/MAX78002/EEPROM_Emulator/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/EEPROM_Emulator/.vscode/settings.json
+++ b/Examples/MAX78002/EEPROM_Emulator/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/EEPROM_Emulator/Makefile b/Examples/MAX78002/EEPROM_Emulator/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/EEPROM_Emulator/Makefile
+++ b/Examples/MAX78002/EEPROM_Emulator/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/EEPROM_Emulator/README.md b/Examples/MAX78002/EEPROM_Emulator/README.md
index 41eb92a8bd..79c1cdca7b 100644
--- a/Examples/MAX78002/EEPROM_Emulator/README.md
+++ b/Examples/MAX78002/EEPROM_Emulator/README.md
@@ -2,7 +2,7 @@
This example utilizes the MAX78002 to emulate a 64KiB EEPROM chip with an I2C interface.
-This "EEEPROM" can only perform read and write operations.
+This "EEPROM" can only perform read and write operations.
To write data to the EEPROM emulator execute the following steps:
```
@@ -48,7 +48,7 @@ To help with syncronization, a "Ready Signal" is set up as an output from a GPIO
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/EEPROM_Emulator/project.mk b/Examples/MAX78002/EEPROM_Emulator/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX78002/EEPROM_Emulator/project.mk
+++ b/Examples/MAX78002/EEPROM_Emulator/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78002/Flash/.vscode/README.md b/Examples/MAX78002/Flash/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/Flash/.vscode/README.md
+++ b/Examples/MAX78002/Flash/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/Flash/.vscode/settings.json b/Examples/MAX78002/Flash/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/Flash/.vscode/settings.json
+++ b/Examples/MAX78002/Flash/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/Flash/Makefile b/Examples/MAX78002/Flash/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/Flash/Makefile
+++ b/Examples/MAX78002/Flash/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/Flash/README.md b/Examples/MAX78002/Flash/README.md
index 3aa84be20c..4a50560f83 100644
--- a/Examples/MAX78002/Flash/README.md
+++ b/Examples/MAX78002/Flash/README.md
@@ -20,7 +20,7 @@ The _second_ time the example is run the application will see the "magic" 32-bit
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/Flash/project.mk b/Examples/MAX78002/Flash/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX78002/Flash/project.mk
+++ b/Examples/MAX78002/Flash/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78002/Flash_CLI/.vscode/README.md b/Examples/MAX78002/Flash_CLI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/Flash_CLI/.vscode/README.md
+++ b/Examples/MAX78002/Flash_CLI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/Flash_CLI/.vscode/settings.json b/Examples/MAX78002/Flash_CLI/.vscode/settings.json
index 09db50cc93..ad0c1e9b53 100755
--- a/Examples/MAX78002/Flash_CLI/.vscode/settings.json
+++ b/Examples/MAX78002/Flash_CLI/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -65,6 +66,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/Flash_CLI/Makefile b/Examples/MAX78002/Flash_CLI/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/Flash_CLI/Makefile
+++ b/Examples/MAX78002/Flash_CLI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/Flash_CLI/README.md b/Examples/MAX78002/Flash_CLI/README.md
index 8614267550..47d4825c60 100644
--- a/Examples/MAX78002/Flash_CLI/README.md
+++ b/Examples/MAX78002/Flash_CLI/README.md
@@ -8,7 +8,7 @@ This example demonstates the CLI commands feature of FreeRTOS, various features
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/Flash_CLI/project.mk b/Examples/MAX78002/Flash_CLI/project.mk
index be443f8cb6..c8c1180c5d 100644
--- a/Examples/MAX78002/Flash_CLI/project.mk
+++ b/Examples/MAX78002/Flash_CLI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/FreeRTOSDemo/.vscode/README.md b/Examples/MAX78002/FreeRTOSDemo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/FreeRTOSDemo/.vscode/README.md
+++ b/Examples/MAX78002/FreeRTOSDemo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/FreeRTOSDemo/.vscode/settings.json b/Examples/MAX78002/FreeRTOSDemo/.vscode/settings.json
index e53cab0180..084ef1431b 100755
--- a/Examples/MAX78002/FreeRTOSDemo/.vscode/settings.json
+++ b/Examples/MAX78002/FreeRTOSDemo/.vscode/settings.json
@@ -48,13 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -68,6 +68,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -75,7 +76,6 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX78002/FreeRTOSDemo/Makefile b/Examples/MAX78002/FreeRTOSDemo/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/FreeRTOSDemo/Makefile
+++ b/Examples/MAX78002/FreeRTOSDemo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/FreeRTOSDemo/README.md b/Examples/MAX78002/FreeRTOSDemo/README.md
index 23f533d757..84b76f1706 100644
--- a/Examples/MAX78002/FreeRTOSDemo/README.md
+++ b/Examples/MAX78002/FreeRTOSDemo/README.md
@@ -6,7 +6,7 @@ A basic getting started application for FreeRTOS.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/FreeRTOSDemo/project.mk b/Examples/MAX78002/FreeRTOSDemo/project.mk
index be443f8cb6..c8c1180c5d 100644
--- a/Examples/MAX78002/FreeRTOSDemo/project.mk
+++ b/Examples/MAX78002/FreeRTOSDemo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/GPIO/.vscode/README.md b/Examples/MAX78002/GPIO/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/GPIO/.vscode/README.md
+++ b/Examples/MAX78002/GPIO/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/GPIO/.vscode/settings.json b/Examples/MAX78002/GPIO/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/GPIO/.vscode/settings.json
+++ b/Examples/MAX78002/GPIO/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/GPIO/Makefile b/Examples/MAX78002/GPIO/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/GPIO/Makefile
+++ b/Examples/MAX78002/GPIO/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/GPIO/README.md b/Examples/MAX78002/GPIO/README.md
index 966637f1ad..a9b9646810 100644
--- a/Examples/MAX78002/GPIO/README.md
+++ b/Examples/MAX78002/GPIO/README.md
@@ -8,7 +8,7 @@ P2.6 (PB1) is continuously scanned and whatever value is read on that pin is the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/GPIO/project.mk b/Examples/MAX78002/GPIO/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/GPIO/project.mk
+++ b/Examples/MAX78002/GPIO/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/Hello_World/.vscode/README.md b/Examples/MAX78002/Hello_World/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/Hello_World/.vscode/README.md
+++ b/Examples/MAX78002/Hello_World/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/Hello_World/.vscode/settings.json b/Examples/MAX78002/Hello_World/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/Hello_World/.vscode/settings.json
+++ b/Examples/MAX78002/Hello_World/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/Hello_World/Makefile b/Examples/MAX78002/Hello_World/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/Hello_World/Makefile
+++ b/Examples/MAX78002/Hello_World/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/Hello_World/README.md b/Examples/MAX78002/Hello_World/README.md
index 7add287718..77b1676482 100644
--- a/Examples/MAX78002/Hello_World/README.md
+++ b/Examples/MAX78002/Hello_World/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/Hello_World/project.mk b/Examples/MAX78002/Hello_World/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/Hello_World/project.mk
+++ b/Examples/MAX78002/Hello_World/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/Hello_World_Cpp/.vscode/README.md b/Examples/MAX78002/Hello_World_Cpp/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/Hello_World_Cpp/.vscode/README.md
+++ b/Examples/MAX78002/Hello_World_Cpp/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/Hello_World_Cpp/.vscode/settings.json b/Examples/MAX78002/Hello_World_Cpp/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/Hello_World_Cpp/.vscode/settings.json
+++ b/Examples/MAX78002/Hello_World_Cpp/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/Hello_World_Cpp/Makefile b/Examples/MAX78002/Hello_World_Cpp/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/Hello_World_Cpp/Makefile
+++ b/Examples/MAX78002/Hello_World_Cpp/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/Hello_World_Cpp/README.md b/Examples/MAX78002/Hello_World_Cpp/README.md
index 19915568c3..3a19cffa61 100644
--- a/Examples/MAX78002/Hello_World_Cpp/README.md
+++ b/Examples/MAX78002/Hello_World_Cpp/README.md
@@ -8,7 +8,7 @@ This version of Hello_World prints an incrementing count to the console UART and
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/Hello_World_Cpp/project.mk b/Examples/MAX78002/Hello_World_Cpp/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/Hello_World_Cpp/project.mk
+++ b/Examples/MAX78002/Hello_World_Cpp/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/I2C/.vscode/README.md b/Examples/MAX78002/I2C/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/I2C/.vscode/README.md
+++ b/Examples/MAX78002/I2C/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/I2C/.vscode/settings.json b/Examples/MAX78002/I2C/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/I2C/.vscode/settings.json
+++ b/Examples/MAX78002/I2C/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/I2C/Makefile b/Examples/MAX78002/I2C/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/I2C/Makefile
+++ b/Examples/MAX78002/I2C/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/I2C/README.md b/Examples/MAX78002/I2C/README.md
index 9e4feaab84..9a3fadb6b4 100644
--- a/Examples/MAX78002/I2C/README.md
+++ b/Examples/MAX78002/I2C/README.md
@@ -6,7 +6,7 @@ This example uses the I2C Master to read/write from/to the I2C Slave.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/I2C/project.mk b/Examples/MAX78002/I2C/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/I2C/project.mk
+++ b/Examples/MAX78002/I2C/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/I2C_MNGR/.vscode/README.md b/Examples/MAX78002/I2C_MNGR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/I2C_MNGR/.vscode/README.md
+++ b/Examples/MAX78002/I2C_MNGR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/I2C_MNGR/.vscode/settings.json b/Examples/MAX78002/I2C_MNGR/.vscode/settings.json
index 4aa7ee985b..a788ca0a5e 100755
--- a/Examples/MAX78002/I2C_MNGR/.vscode/settings.json
+++ b/Examples/MAX78002/I2C_MNGR/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source/include",
@@ -67,13 +67,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/FreeRTOS/Source",
diff --git a/Examples/MAX78002/I2C_MNGR/Makefile b/Examples/MAX78002/I2C_MNGR/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/I2C_MNGR/Makefile
+++ b/Examples/MAX78002/I2C_MNGR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/I2C_MNGR/README.md b/Examples/MAX78002/I2C_MNGR/README.md
index 915e5f0b31..cab2621787 100644
--- a/Examples/MAX78002/I2C_MNGR/README.md
+++ b/Examples/MAX78002/I2C_MNGR/README.md
@@ -10,7 +10,7 @@ You may change the configuration of each EEPROM's I2C transaction parameters (sl
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/I2C_MNGR/project.mk b/Examples/MAX78002/I2C_MNGR/project.mk
index 3f31cd416e..d194698b47 100644
--- a/Examples/MAX78002/I2C_MNGR/project.mk
+++ b/Examples/MAX78002/I2C_MNGR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/I2C_SCAN/.vscode/README.md b/Examples/MAX78002/I2C_SCAN/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/I2C_SCAN/.vscode/README.md
+++ b/Examples/MAX78002/I2C_SCAN/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/I2C_SCAN/.vscode/settings.json b/Examples/MAX78002/I2C_SCAN/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/I2C_SCAN/.vscode/settings.json
+++ b/Examples/MAX78002/I2C_SCAN/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/I2C_SCAN/Makefile b/Examples/MAX78002/I2C_SCAN/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/I2C_SCAN/Makefile
+++ b/Examples/MAX78002/I2C_SCAN/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/I2C_SCAN/README.md b/Examples/MAX78002/I2C_SCAN/README.md
index 697e5a4cf0..95f78112e7 100644
--- a/Examples/MAX78002/I2C_SCAN/README.md
+++ b/Examples/MAX78002/I2C_SCAN/README.md
@@ -6,7 +6,7 @@ This example uses the I2C Master to find the addresses of any I2C Slave devices
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/I2C_SCAN/project.mk b/Examples/MAX78002/I2C_SCAN/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/I2C_SCAN/project.mk
+++ b/Examples/MAX78002/I2C_SCAN/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/I2C_Sensor/.vscode/README.md b/Examples/MAX78002/I2C_Sensor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/I2C_Sensor/.vscode/README.md
+++ b/Examples/MAX78002/I2C_Sensor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/I2C_Sensor/.vscode/settings.json b/Examples/MAX78002/I2C_Sensor/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/I2C_Sensor/.vscode/settings.json
+++ b/Examples/MAX78002/I2C_Sensor/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/I2C_Sensor/Makefile b/Examples/MAX78002/I2C_Sensor/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/I2C_Sensor/Makefile
+++ b/Examples/MAX78002/I2C_Sensor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/I2C_Sensor/README.md b/Examples/MAX78002/I2C_Sensor/README.md
index 9769fcae09..cc89027708 100644
--- a/Examples/MAX78002/I2C_Sensor/README.md
+++ b/Examples/MAX78002/I2C_Sensor/README.md
@@ -8,7 +8,7 @@ After initialization, a new reading is printed to the terminal every second.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/I2C_Sensor/project.mk b/Examples/MAX78002/I2C_Sensor/project.mk
index 66165cda7a..b21d36e0fd 100644
--- a/Examples/MAX78002/I2C_Sensor/project.mk
+++ b/Examples/MAX78002/I2C_Sensor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/I2S/.vscode/README.md b/Examples/MAX78002/I2S/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/I2S/.vscode/README.md
+++ b/Examples/MAX78002/I2S/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/I2S/.vscode/settings.json b/Examples/MAX78002/I2S/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/I2S/.vscode/settings.json
+++ b/Examples/MAX78002/I2S/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/I2S/Makefile b/Examples/MAX78002/I2S/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/I2S/Makefile
+++ b/Examples/MAX78002/I2S/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/I2S/README.md b/Examples/MAX78002/I2S/README.md
index faccb583df..b9041fab47 100644
--- a/Examples/MAX78002/I2S/README.md
+++ b/Examples/MAX78002/I2S/README.md
@@ -6,7 +6,7 @@ This application demonstrates receiving data from the microphone on the MAX78002
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/I2S/project.mk b/Examples/MAX78002/I2S/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/I2S/project.mk
+++ b/Examples/MAX78002/I2S/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/I2S_DMA/.vscode/README.md b/Examples/MAX78002/I2S_DMA/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/I2S_DMA/.vscode/README.md
+++ b/Examples/MAX78002/I2S_DMA/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/I2S_DMA/.vscode/settings.json b/Examples/MAX78002/I2S_DMA/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/I2S_DMA/.vscode/settings.json
+++ b/Examples/MAX78002/I2S_DMA/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/I2S_DMA/Makefile b/Examples/MAX78002/I2S_DMA/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/I2S_DMA/Makefile
+++ b/Examples/MAX78002/I2S_DMA/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/I2S_DMA/README.md b/Examples/MAX78002/I2S_DMA/README.md
index 6f374ec07c..1cf719ea82 100644
--- a/Examples/MAX78002/I2S_DMA/README.md
+++ b/Examples/MAX78002/I2S_DMA/README.md
@@ -6,7 +6,7 @@ This application demonstrates receiving data from the microphone on the MAX78002
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/I2S_DMA/project.mk b/Examples/MAX78002/I2S_DMA/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/I2S_DMA/project.mk
+++ b/Examples/MAX78002/I2S_DMA/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ICC/.vscode/README.md b/Examples/MAX78002/ICC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ICC/.vscode/README.md
+++ b/Examples/MAX78002/ICC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ICC/.vscode/settings.json b/Examples/MAX78002/ICC/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/ICC/.vscode/settings.json
+++ b/Examples/MAX78002/ICC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/ICC/Makefile b/Examples/MAX78002/ICC/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/ICC/Makefile
+++ b/Examples/MAX78002/ICC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ICC/README.md b/Examples/MAX78002/ICC/README.md
index 0dc849ebd3..852c79f73e 100644
--- a/Examples/MAX78002/ICC/README.md
+++ b/Examples/MAX78002/ICC/README.md
@@ -11,7 +11,7 @@ This example demonstrates the time differences when running code with the instru
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/ICC/project.mk b/Examples/MAX78002/ICC/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/ICC/project.mk
+++ b/Examples/MAX78002/ICC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/ImgCapture/.vscode/README.md b/Examples/MAX78002/ImgCapture/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/ImgCapture/.vscode/README.md
+++ b/Examples/MAX78002/ImgCapture/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/ImgCapture/.vscode/settings.json b/Examples/MAX78002/ImgCapture/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/ImgCapture/.vscode/settings.json
+++ b/Examples/MAX78002/ImgCapture/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/ImgCapture/Makefile b/Examples/MAX78002/ImgCapture/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/ImgCapture/Makefile
+++ b/Examples/MAX78002/ImgCapture/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/ImgCapture/README.md b/Examples/MAX78002/ImgCapture/README.md
index cf1629e19e..215f5dd5cf 100644
--- a/Examples/MAX78002/ImgCapture/README.md
+++ b/Examples/MAX78002/ImgCapture/README.md
@@ -23,7 +23,7 @@ It supports the following output destinations:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Console Interface & Utilites
diff --git a/Examples/MAX78002/ImgCapture/project.mk b/Examples/MAX78002/ImgCapture/project.mk
index 58a440d49a..96ce54282f 100644
--- a/Examples/MAX78002/ImgCapture/project.mk
+++ b/Examples/MAX78002/ImgCapture/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/LP/.vscode/README.md b/Examples/MAX78002/LP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/LP/.vscode/README.md
+++ b/Examples/MAX78002/LP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/LP/.vscode/settings.json b/Examples/MAX78002/LP/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/LP/.vscode/settings.json
+++ b/Examples/MAX78002/LP/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/LP/Makefile b/Examples/MAX78002/LP/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/LP/Makefile
+++ b/Examples/MAX78002/LP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/LP/README.md b/Examples/MAX78002/LP/README.md
index cc8cbc55a3..cad876ee14 100644
--- a/Examples/MAX78002/LP/README.md
+++ b/Examples/MAX78002/LP/README.md
@@ -17,7 +17,7 @@ Following modes can be tested:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/LP/project.mk b/Examples/MAX78002/LP/project.mk
index c5d422ccac..4a8c859560 100644
--- a/Examples/MAX78002/LP/project.mk
+++ b/Examples/MAX78002/LP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/LPCMP/.vscode/README.md b/Examples/MAX78002/LPCMP/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/LPCMP/.vscode/README.md
+++ b/Examples/MAX78002/LPCMP/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/LPCMP/.vscode/settings.json b/Examples/MAX78002/LPCMP/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/LPCMP/.vscode/settings.json
+++ b/Examples/MAX78002/LPCMP/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/LPCMP/Makefile b/Examples/MAX78002/LPCMP/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/LPCMP/Makefile
+++ b/Examples/MAX78002/LPCMP/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/LPCMP/README.md b/Examples/MAX78002/LPCMP/README.md
index 128fb65690..552d8a4d8e 100644
--- a/Examples/MAX78002/LPCMP/README.md
+++ b/Examples/MAX78002/LPCMP/README.md
@@ -8,7 +8,7 @@ The example is configured to use analog channels 0 (P2.0) and 1 (P2.1) as the ne
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/LPCMP/project.mk b/Examples/MAX78002/LPCMP/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/LPCMP/project.mk
+++ b/Examples/MAX78002/LPCMP/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/Library_Generate/.vscode/README.md b/Examples/MAX78002/Library_Generate/.vscode/README.md
index d289bba0d6..e2e9a1a652 100644
--- a/Examples/MAX78002/Library_Generate/.vscode/README.md
+++ b/Examples/MAX78002/Library_Generate/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* If it's not in the README, check the UG.
* If it's not in the UG, open a ticket!
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
@@ -31,7 +31,7 @@ The following features are supported:
The steps below are also available in video form in "Understanding Artificial Intelligence Episode 8.5 - Visual Studio Code" [here](https://www.analog.com/en/education/education-library/videos/6313212752112.html).
-1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+1. Download and install the Analog Devices MSDK for your OS from the links below. For more detailed instructions on installing the MSDK, see the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [Windows](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0010820A)
* [Linux (Ubuntu)](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018720A)
* [MacOS](https://www.analog.com/en/design-center/evaluation-hardware-and-software/software/software-download?swpart=SFW0018610A)
diff --git a/Examples/MAX78002/Library_Generate/Makefile b/Examples/MAX78002/Library_Generate/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/Library_Generate/Makefile
+++ b/Examples/MAX78002/Library_Generate/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/Library_Generate/README.md b/Examples/MAX78002/Library_Generate/README.md
index 405263bf82..267635a256 100644
--- a/Examples/MAX78002/Library_Generate/README.md
+++ b/Examples/MAX78002/Library_Generate/README.md
@@ -9,7 +9,7 @@ Check the Library_Use demo to see how to link static libraries to an application
### Project Usage
-Universal instructions on building this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**.
+Universal instructions on building this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/Library_Generate/project.mk b/Examples/MAX78002/Library_Generate/project.mk
index 41202bd0b0..01dcd9fbb2 100644
--- a/Examples/MAX78002/Library_Generate/project.mk
+++ b/Examples/MAX78002/Library_Generate/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78002/Library_Use/.vscode/README.md b/Examples/MAX78002/Library_Use/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/Library_Use/.vscode/README.md
+++ b/Examples/MAX78002/Library_Use/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/Library_Use/.vscode/settings.json b/Examples/MAX78002/Library_Use/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/Library_Use/.vscode/settings.json
+++ b/Examples/MAX78002/Library_Use/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/Library_Use/Makefile b/Examples/MAX78002/Library_Use/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/Library_Use/Makefile
+++ b/Examples/MAX78002/Library_Use/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/Library_Use/README.md b/Examples/MAX78002/Library_Use/README.md
index b8bec2346f..5fa0c20cff 100644
--- a/Examples/MAX78002/Library_Use/README.md
+++ b/Examples/MAX78002/Library_Use/README.md
@@ -9,7 +9,7 @@ to project.mk to see how to include ".a" static library files into your project.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/Library_Use/project.mk b/Examples/MAX78002/Library_Use/project.mk
index 972fa6942d..697d6809f8 100644
--- a/Examples/MAX78002/Library_Use/project.mk
+++ b/Examples/MAX78002/Library_Use/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78002/Pulse_Train/.vscode/README.md b/Examples/MAX78002/Pulse_Train/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/Pulse_Train/.vscode/README.md
+++ b/Examples/MAX78002/Pulse_Train/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/Pulse_Train/.vscode/settings.json b/Examples/MAX78002/Pulse_Train/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/Pulse_Train/.vscode/settings.json
+++ b/Examples/MAX78002/Pulse_Train/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/Pulse_Train/Makefile b/Examples/MAX78002/Pulse_Train/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/Pulse_Train/Makefile
+++ b/Examples/MAX78002/Pulse_Train/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/Pulse_Train/README.md b/Examples/MAX78002/Pulse_Train/README.md
index 86a9490f26..1a510bbc1e 100644
--- a/Examples/MAX78002/Pulse_Train/README.md
+++ b/Examples/MAX78002/Pulse_Train/README.md
@@ -10,7 +10,7 @@ The second, PT1, is set to generate a 10Hz square wave. If you make the connect
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/Pulse_Train/project.mk b/Examples/MAX78002/Pulse_Train/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/Pulse_Train/project.mk
+++ b/Examples/MAX78002/Pulse_Train/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/QSPI/.vscode/README.md b/Examples/MAX78002/QSPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/QSPI/.vscode/README.md
+++ b/Examples/MAX78002/QSPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/QSPI/.vscode/settings.json b/Examples/MAX78002/QSPI/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/QSPI/.vscode/settings.json
+++ b/Examples/MAX78002/QSPI/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/QSPI/Makefile b/Examples/MAX78002/QSPI/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/QSPI/Makefile
+++ b/Examples/MAX78002/QSPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/QSPI/README.md b/Examples/MAX78002/QSPI/README.md
index 8e9e76b5f3..f4f83b07bc 100644
--- a/Examples/MAX78002/QSPI/README.md
+++ b/Examples/MAX78002/QSPI/README.md
@@ -6,7 +6,7 @@ This example demonstrates QSPI communication in drivers written for the APS6404
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/QSPI/project.mk b/Examples/MAX78002/QSPI/project.mk
index f068448db8..c5bb8a2183 100644
--- a/Examples/MAX78002/QSPI/project.mk
+++ b/Examples/MAX78002/QSPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78002/RTC/.vscode/README.md b/Examples/MAX78002/RTC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/RTC/.vscode/README.md
+++ b/Examples/MAX78002/RTC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/RTC/.vscode/settings.json b/Examples/MAX78002/RTC/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/RTC/.vscode/settings.json
+++ b/Examples/MAX78002/RTC/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/RTC/Makefile b/Examples/MAX78002/RTC/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/RTC/Makefile
+++ b/Examples/MAX78002/RTC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/RTC/README.md b/Examples/MAX78002/RTC/README.md
index 75223edfe7..b9475647e3 100644
--- a/Examples/MAX78002/RTC/README.md
+++ b/Examples/MAX78002/RTC/README.md
@@ -11,7 +11,7 @@ The RTC is enabled and the sub-second alarm set to trigger every 250 ms.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/RTC/project.mk b/Examples/MAX78002/RTC/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/RTC/project.mk
+++ b/Examples/MAX78002/RTC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/RTC_Backup/.vscode/README.md b/Examples/MAX78002/RTC_Backup/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/RTC_Backup/.vscode/README.md
+++ b/Examples/MAX78002/RTC_Backup/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/RTC_Backup/.vscode/settings.json b/Examples/MAX78002/RTC_Backup/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/RTC_Backup/.vscode/settings.json
+++ b/Examples/MAX78002/RTC_Backup/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/RTC_Backup/Makefile b/Examples/MAX78002/RTC_Backup/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/RTC_Backup/Makefile
+++ b/Examples/MAX78002/RTC_Backup/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/RTC_Backup/README.md b/Examples/MAX78002/RTC_Backup/README.md
index d51fd3348e..d0f23fc7fe 100644
--- a/Examples/MAX78002/RTC_Backup/README.md
+++ b/Examples/MAX78002/RTC_Backup/README.md
@@ -8,7 +8,7 @@ The RTC time-of-day alarm is used to wake the device from backup mode every TIME
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/RTC_Backup/project.mk b/Examples/MAX78002/RTC_Backup/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/RTC_Backup/project.mk
+++ b/Examples/MAX78002/RTC_Backup/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/RV_ARM_Loader/.vscode/README.md b/Examples/MAX78002/RV_ARM_Loader/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/RV_ARM_Loader/.vscode/README.md
+++ b/Examples/MAX78002/RV_ARM_Loader/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/RV_ARM_Loader/.vscode/settings.json b/Examples/MAX78002/RV_ARM_Loader/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/RV_ARM_Loader/.vscode/settings.json
+++ b/Examples/MAX78002/RV_ARM_Loader/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/RV_ARM_Loader/Makefile b/Examples/MAX78002/RV_ARM_Loader/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/RV_ARM_Loader/Makefile
+++ b/Examples/MAX78002/RV_ARM_Loader/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/RV_ARM_Loader/README.md b/Examples/MAX78002/RV_ARM_Loader/README.md
index 1e80de1d6c..a3b04e5350 100644
--- a/Examples/MAX78002/RV_ARM_Loader/README.md
+++ b/Examples/MAX78002/RV_ARM_Loader/README.md
@@ -8,7 +8,7 @@ RV_ARM_Loader runs on the ARM core to load the RISCV code space, setup the RISCV
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/RV_ARM_Loader/project.mk b/Examples/MAX78002/RV_ARM_Loader/project.mk
index 5a80a78f61..d1f655ba86 100644
--- a/Examples/MAX78002/RV_ARM_Loader/project.mk
+++ b/Examples/MAX78002/RV_ARM_Loader/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78002/SDHC_FAT/.cproject b/Examples/MAX78002/SDHC_FAT/.cproject
index 5ee7f6437f..5e62435311 100644
--- a/Examples/MAX78002/SDHC_FAT/.cproject
+++ b/Examples/MAX78002/SDHC_FAT/.cproject
@@ -34,7 +34,7 @@
-
+
diff --git a/Examples/MAX78002/SDHC_FAT/.vscode/README.md b/Examples/MAX78002/SDHC_FAT/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/SDHC_FAT/.vscode/README.md
+++ b/Examples/MAX78002/SDHC_FAT/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/SDHC_FAT/.vscode/settings.json b/Examples/MAX78002/SDHC_FAT/.vscode/settings.json
index 6af15d193a..9a4a3d0f4b 100755
--- a/Examples/MAX78002/SDHC_FAT/.vscode/settings.json
+++ b/Examples/MAX78002/SDHC_FAT/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -55,7 +56,7 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/CLI/inc",
"${config:MAXIM_PATH}/Libraries/SDHC/Include",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source"
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source"
],
"C_Cpp.default.browse.path": [
"${workspaceFolder}",
@@ -64,13 +65,14 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/CLI/src",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source"
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source"
],
"C_Cpp.default.defines": [
diff --git a/Examples/MAX78002/SDHC_FAT/Makefile b/Examples/MAX78002/SDHC_FAT/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/SDHC_FAT/Makefile
+++ b/Examples/MAX78002/SDHC_FAT/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/SDHC_FAT/README.md b/Examples/MAX78002/SDHC_FAT/README.md
index 6fa0bf1cc5..eac65cbc3b 100644
--- a/Examples/MAX78002/SDHC_FAT/README.md
+++ b/Examples/MAX78002/SDHC_FAT/README.md
@@ -6,7 +6,7 @@ This example demonstrates the SDHC FAT Filesystem. The terminal prompts with a l
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/SDHC_FAT/project.mk b/Examples/MAX78002/SDHC_FAT/project.mk
index 79f69c992c..99ea213dfb 100644
--- a/Examples/MAX78002/SDHC_FAT/project.mk
+++ b/Examples/MAX78002/SDHC_FAT/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/SDHC_Raw/.cproject b/Examples/MAX78002/SDHC_Raw/.cproject
index 51f393251c..8ed0facb92 100644
--- a/Examples/MAX78002/SDHC_Raw/.cproject
+++ b/Examples/MAX78002/SDHC_Raw/.cproject
@@ -33,7 +33,7 @@
-
+
diff --git a/Examples/MAX78002/SDHC_Raw/.vscode/README.md b/Examples/MAX78002/SDHC_Raw/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/SDHC_Raw/.vscode/README.md
+++ b/Examples/MAX78002/SDHC_Raw/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/SDHC_Raw/.vscode/settings.json b/Examples/MAX78002/SDHC_Raw/.vscode/settings.json
index 5a5b205d52..f7d9c33a9a 100755
--- a/Examples/MAX78002/SDHC_Raw/.vscode/settings.json
+++ b/Examples/MAX78002/SDHC_Raw/.vscode/settings.json
@@ -48,14 +48,14 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/SDHC/Include",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -66,14 +66,14 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
- "${config:MAXIM_PATH}/Libraries/SDHC/ff13/Source",
+ "${config:MAXIM_PATH}/Libraries/SDHC/ff15/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/SDHC_Raw/Makefile b/Examples/MAX78002/SDHC_Raw/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/SDHC_Raw/Makefile
+++ b/Examples/MAX78002/SDHC_Raw/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/SDHC_Raw/README.md b/Examples/MAX78002/SDHC_Raw/README.md
index c3884882dd..10ef229c85 100644
--- a/Examples/MAX78002/SDHC_Raw/README.md
+++ b/Examples/MAX78002/SDHC_Raw/README.md
@@ -6,7 +6,7 @@ This example demonstrates a series of blocking and non-blocking read/writes in 1
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/SDHC_Raw/project.mk b/Examples/MAX78002/SDHC_Raw/project.mk
index d5fd4657f8..b01fdac977 100644
--- a/Examples/MAX78002/SDHC_Raw/project.mk
+++ b/Examples/MAX78002/SDHC_Raw/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/SPI/.vscode/README.md b/Examples/MAX78002/SPI/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/SPI/.vscode/README.md
+++ b/Examples/MAX78002/SPI/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/SPI/.vscode/settings.json b/Examples/MAX78002/SPI/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/SPI/.vscode/settings.json
+++ b/Examples/MAX78002/SPI/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/SPI/Makefile b/Examples/MAX78002/SPI/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/SPI/Makefile
+++ b/Examples/MAX78002/SPI/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/SPI/README.md b/Examples/MAX78002/SPI/README.md
index e652b0dd18..a7bc39c668 100644
--- a/Examples/MAX78002/SPI/README.md
+++ b/Examples/MAX78002/SPI/README.md
@@ -10,11 +10,11 @@ This example uses the Hardware Target Select control scheme (application does no
## Software
-This project uses the SPI v2 library. More information on the SPI v2 library can be found in the **[MSDK User Guide Developer Notes](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#spi-v2-library)**.
+This project uses the SPI v2 library. More information on the SPI v2 library can be found in the **[MSDK User Guide Developer Notes](https://analogdevicesinc.github.io/msdk/USERGUIDE/#spi-v2-library)**.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/SPI/project.mk b/Examples/MAX78002/SPI/project.mk
index 675155fcc1..f640d319bf 100644
--- a/Examples/MAX78002/SPI/project.mk
+++ b/Examples/MAX78002/SPI/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/SPI_ControllerTarget/.vscode/README.md b/Examples/MAX78002/SPI_ControllerTarget/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/SPI_ControllerTarget/.vscode/README.md
+++ b/Examples/MAX78002/SPI_ControllerTarget/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/SPI_ControllerTarget/.vscode/settings.json b/Examples/MAX78002/SPI_ControllerTarget/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/SPI_ControllerTarget/.vscode/settings.json
+++ b/Examples/MAX78002/SPI_ControllerTarget/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/SPI_ControllerTarget/Makefile b/Examples/MAX78002/SPI_ControllerTarget/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/SPI_ControllerTarget/Makefile
+++ b/Examples/MAX78002/SPI_ControllerTarget/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/SPI_ControllerTarget/README.md b/Examples/MAX78002/SPI_ControllerTarget/README.md
index 15e706b181..2504876903 100644
--- a/Examples/MAX78002/SPI_ControllerTarget/README.md
+++ b/Examples/MAX78002/SPI_ControllerTarget/README.md
@@ -15,11 +15,11 @@ Target Select (CS) Pin Connections
## Software
-This project uses the SPI v2 library. More information on the SPI v2 library can be found in the **[MSDK User Guide Developer Notes](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#spi-v2-library)**.
+This project uses the SPI v2 library. More information on the SPI v2 library can be found in the **[MSDK User Guide Developer Notes](https://analogdevicesinc.github.io/msdk/USERGUIDE/#spi-v2-library)**.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/SPI_ControllerTarget/project.mk b/Examples/MAX78002/SPI_ControllerTarget/project.mk
index 675155fcc1..f640d319bf 100644
--- a/Examples/MAX78002/SPI_ControllerTarget/project.mk
+++ b/Examples/MAX78002/SPI_ControllerTarget/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/SPI_MasterSlave/.vscode/README.md b/Examples/MAX78002/SPI_MasterSlave/.vscode/README.md
index 58733e941c..90fbcefc65 100644
--- a/Examples/MAX78002/SPI_MasterSlave/.vscode/README.md
+++ b/Examples/MAX78002/SPI_MasterSlave/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/SPI_MasterSlave/.vscode/settings.json b/Examples/MAX78002/SPI_MasterSlave/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/SPI_MasterSlave/.vscode/settings.json
+++ b/Examples/MAX78002/SPI_MasterSlave/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/SPI_MasterSlave/Makefile b/Examples/MAX78002/SPI_MasterSlave/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/SPI_MasterSlave/Makefile
+++ b/Examples/MAX78002/SPI_MasterSlave/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/SPI_MasterSlave/README.md b/Examples/MAX78002/SPI_MasterSlave/README.md
index 70c132cebb..ebc9c62367 100644
--- a/Examples/MAX78002/SPI_MasterSlave/README.md
+++ b/Examples/MAX78002/SPI_MasterSlave/README.md
@@ -8,11 +8,11 @@ Once the master ends the transaction, the data received by the master and the sl
## Software
-This project uses the SPI v2 library. More information on the SPI v2 library can be found in the **[MSDK User Guide Developer Notes](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#spi-v2-library)**.
+This project uses the SPI v2 library. More information on the SPI v2 library can be found in the **[MSDK User Guide Developer Notes](https://analogdevicesinc.github.io/msdk/USERGUIDE/#spi-v2-library)**.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/SPI_MasterSlave/project.mk b/Examples/MAX78002/SPI_MasterSlave/project.mk
index 9caf04b905..a607748507 100644
--- a/Examples/MAX78002/SPI_MasterSlave/project.mk
+++ b/Examples/MAX78002/SPI_MasterSlave/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78002/TFT_Demo/.vscode/README.md b/Examples/MAX78002/TFT_Demo/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/TFT_Demo/.vscode/README.md
+++ b/Examples/MAX78002/TFT_Demo/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/TFT_Demo/.vscode/settings.json b/Examples/MAX78002/TFT_Demo/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/TFT_Demo/.vscode/settings.json
+++ b/Examples/MAX78002/TFT_Demo/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/TFT_Demo/Makefile b/Examples/MAX78002/TFT_Demo/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/TFT_Demo/Makefile
+++ b/Examples/MAX78002/TFT_Demo/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/TFT_Demo/README.md b/Examples/MAX78002/TFT_Demo/README.md
index cf8c303ba2..ea743f2c36 100644
--- a/Examples/MAX78002/TFT_Demo/README.md
+++ b/Examples/MAX78002/TFT_Demo/README.md
@@ -4,7 +4,7 @@
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/TFT_Demo/project.mk b/Examples/MAX78002/TFT_Demo/project.mk
index d5c1c21381..202b2a0180 100644
--- a/Examples/MAX78002/TFT_Demo/project.mk
+++ b/Examples/MAX78002/TFT_Demo/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/TFT_Demo/resources/tft/bmp/README.md b/Examples/MAX78002/TFT_Demo/resources/tft/bmp/README.md
index 7305c5f601..ededc5392a 100644
--- a/Examples/MAX78002/TFT_Demo/resources/tft/bmp/README.md
+++ b/Examples/MAX78002/TFT_Demo/resources/tft/bmp/README.md
@@ -38,7 +38,7 @@ Examples:
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/TMR/.vscode/README.md b/Examples/MAX78002/TMR/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/TMR/.vscode/README.md
+++ b/Examples/MAX78002/TMR/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/TMR/.vscode/settings.json b/Examples/MAX78002/TMR/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/TMR/.vscode/settings.json
+++ b/Examples/MAX78002/TMR/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/TMR/Makefile b/Examples/MAX78002/TMR/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/TMR/Makefile
+++ b/Examples/MAX78002/TMR/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/TMR/README.md b/Examples/MAX78002/TMR/README.md
index d68f4f554e..5aeaa30c2f 100644
--- a/Examples/MAX78002/TMR/README.md
+++ b/Examples/MAX78002/TMR/README.md
@@ -12,7 +12,7 @@ Push PB1 to start the PWM and continuous timer and PB2 to start the oneshot time
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/TMR/project.mk b/Examples/MAX78002/TMR/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/TMR/project.mk
+++ b/Examples/MAX78002/TMR/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/TRNG/.vscode/README.md b/Examples/MAX78002/TRNG/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/TRNG/.vscode/README.md
+++ b/Examples/MAX78002/TRNG/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/TRNG/.vscode/settings.json b/Examples/MAX78002/TRNG/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/TRNG/.vscode/settings.json
+++ b/Examples/MAX78002/TRNG/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/TRNG/Makefile b/Examples/MAX78002/TRNG/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/TRNG/Makefile
+++ b/Examples/MAX78002/TRNG/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/TRNG/README.md b/Examples/MAX78002/TRNG/README.md
index 94024f1af6..8b8473956b 100644
--- a/Examples/MAX78002/TRNG/README.md
+++ b/Examples/MAX78002/TRNG/README.md
@@ -6,7 +6,7 @@ The true random number generator (TRNG) hardware is exercised in this example.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/TRNG/project.mk b/Examples/MAX78002/TRNG/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/TRNG/project.mk
+++ b/Examples/MAX78002/TRNG/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/Temp_Monitor/.vscode/README.md b/Examples/MAX78002/Temp_Monitor/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/Temp_Monitor/.vscode/README.md
+++ b/Examples/MAX78002/Temp_Monitor/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/Temp_Monitor/.vscode/settings.json b/Examples/MAX78002/Temp_Monitor/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/Temp_Monitor/.vscode/settings.json
+++ b/Examples/MAX78002/Temp_Monitor/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/Temp_Monitor/Makefile b/Examples/MAX78002/Temp_Monitor/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/Temp_Monitor/Makefile
+++ b/Examples/MAX78002/Temp_Monitor/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/Temp_Monitor/README.md b/Examples/MAX78002/Temp_Monitor/README.md
index 5a9e1220cb..e55b0f3b2e 100644
--- a/Examples/MAX78002/Temp_Monitor/README.md
+++ b/Examples/MAX78002/Temp_Monitor/README.md
@@ -14,7 +14,7 @@ The temperature limits, flash storage page, and RTC time-of-day alarm period are
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/Temp_Monitor/project.mk b/Examples/MAX78002/Temp_Monitor/project.mk
index 7e3d664eac..aebbcc92b4 100644
--- a/Examples/MAX78002/Temp_Monitor/project.mk
+++ b/Examples/MAX78002/Temp_Monitor/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# **********************************************************
diff --git a/Examples/MAX78002/UART/.vscode/README.md b/Examples/MAX78002/UART/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/UART/.vscode/README.md
+++ b/Examples/MAX78002/UART/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/UART/.vscode/settings.json b/Examples/MAX78002/UART/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/UART/.vscode/settings.json
+++ b/Examples/MAX78002/UART/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/UART/Makefile b/Examples/MAX78002/UART/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/UART/Makefile
+++ b/Examples/MAX78002/UART/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/UART/README.md b/Examples/MAX78002/UART/README.md
index a99a45d61c..d7268d6893 100644
--- a/Examples/MAX78002/UART/README.md
+++ b/Examples/MAX78002/UART/README.md
@@ -6,7 +6,7 @@ This application uses two serial ports to send and receive data. One serial por
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/UART/project.mk b/Examples/MAX78002/UART/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/UART/project.mk
+++ b/Examples/MAX78002/UART/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/USB/USB_CDCACM/.vscode/README.md b/Examples/MAX78002/USB/USB_CDCACM/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/USB/USB_CDCACM/.vscode/README.md
+++ b/Examples/MAX78002/USB/USB_CDCACM/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/USB/USB_CDCACM/.vscode/settings.json b/Examples/MAX78002/USB/USB_CDCACM/.vscode/settings.json
index dd8c450276..2855d90a6e 100755
--- a/Examples/MAX78002/USB/USB_CDCACM/.vscode/settings.json
+++ b/Examples/MAX78002/USB/USB_CDCACM/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/USB/USB_CDCACM/Makefile b/Examples/MAX78002/USB/USB_CDCACM/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/USB/USB_CDCACM/Makefile
+++ b/Examples/MAX78002/USB/USB_CDCACM/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/USB/USB_CDCACM/README.md b/Examples/MAX78002/USB/USB_CDCACM/README.md
index c9e4c98aa3..5e3d49874d 100644
--- a/Examples/MAX78002/USB/USB_CDCACM/README.md
+++ b/Examples/MAX78002/USB/USB_CDCACM/README.md
@@ -6,7 +6,7 @@ The example demonstartes the use of USB CDC-ACM driver class. After doing the re
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/USB/USB_CDCACM/project.mk b/Examples/MAX78002/USB/USB_CDCACM/project.mk
index 0706f8044a..4c0125a454 100644
--- a/Examples/MAX78002/USB/USB_CDCACM/project.mk
+++ b/Examples/MAX78002/USB/USB_CDCACM/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
+++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
index dd8c450276..2855d90a6e 100755
--- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
+++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/Makefile b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/Makefile
+++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/README.md b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/README.md
index cfc21920be..25c6d3fe26 100644
--- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/README.md
+++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/README.md
@@ -6,7 +6,7 @@ The example demonstartes the use of USB composite device with Mass Storage drive
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/project.mk b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/project.mk
index 1280d87f37..17377a230b 100644
--- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/project.mk
+++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
+++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
index dd8c450276..2855d90a6e 100755
--- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
+++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/Makefile b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/Makefile
+++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/README.md b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/README.md
index 22b5922385..ab1c8159d3 100644
--- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/README.md
+++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/README.md
@@ -6,7 +6,7 @@ The example demonstartes the use of USB composite device with Mass Storage drive
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/project.mk b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/project.mk
index 0706f8044a..4c0125a454 100644
--- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/project.mk
+++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/README.md b/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/README.md
+++ b/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/settings.json b/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/settings.json
index dd8c450276..2855d90a6e 100755
--- a/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/settings.json
+++ b/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/USB/USB_HIDKeyboard/Makefile b/Examples/MAX78002/USB/USB_HIDKeyboard/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/USB/USB_HIDKeyboard/Makefile
+++ b/Examples/MAX78002/USB/USB_HIDKeyboard/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/USB/USB_HIDKeyboard/README.md b/Examples/MAX78002/USB/USB_HIDKeyboard/README.md
index 8c201c0606..b57c222e52 100644
--- a/Examples/MAX78002/USB/USB_HIDKeyboard/README.md
+++ b/Examples/MAX78002/USB/USB_HIDKeyboard/README.md
@@ -6,7 +6,7 @@ The example demonstartes the use of USB HID driver class. After doing the requir
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/USB/USB_HIDKeyboard/project.mk b/Examples/MAX78002/USB/USB_HIDKeyboard/project.mk
index 0706f8044a..4c0125a454 100644
--- a/Examples/MAX78002/USB/USB_HIDKeyboard/project.mk
+++ b/Examples/MAX78002/USB/USB_HIDKeyboard/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/USB/USB_MassStorage/.vscode/README.md b/Examples/MAX78002/USB/USB_MassStorage/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/USB/USB_MassStorage/.vscode/README.md
+++ b/Examples/MAX78002/USB/USB_MassStorage/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/USB/USB_MassStorage/.vscode/settings.json b/Examples/MAX78002/USB/USB_MassStorage/.vscode/settings.json
index dd8c450276..2855d90a6e 100755
--- a/Examples/MAX78002/USB/USB_MassStorage/.vscode/settings.json
+++ b/Examples/MAX78002/USB/USB_MassStorage/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/USB/USB_MassStorage/Makefile b/Examples/MAX78002/USB/USB_MassStorage/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/USB/USB_MassStorage/Makefile
+++ b/Examples/MAX78002/USB/USB_MassStorage/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/USB/USB_MassStorage/README.md b/Examples/MAX78002/USB/USB_MassStorage/README.md
index 671a216a74..fd4984d28a 100644
--- a/Examples/MAX78002/USB/USB_MassStorage/README.md
+++ b/Examples/MAX78002/USB/USB_MassStorage/README.md
@@ -6,7 +6,7 @@ The example demonstartes the use of USB Mass Storage driver class. After doing t
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/USB/USB_MassStorage/project.mk b/Examples/MAX78002/USB/USB_MassStorage/project.mk
index 0706f8044a..4c0125a454 100644
--- a/Examples/MAX78002/USB/USB_MassStorage/project.mk
+++ b/Examples/MAX78002/USB/USB_MassStorage/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/README.md b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/README.md
+++ b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/settings.json b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/settings.json
index dd8c450276..2855d90a6e 100755
--- a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/settings.json
+++ b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -59,7 +60,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/enumerate",
"${config:MAXIM_PATH}/Libraries/MAXUSB/include/core/musbhsfc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -70,6 +70,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -80,7 +81,6 @@
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/devclass",
"${config:MAXIM_PATH}/Libraries/MAXUSB/src/enumerate",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/Makefile b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/Makefile
index 5ff57557b2..c10ff9184f 100644
--- a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/Makefile
+++ b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/README.md b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/README.md
index 339349557d..059b760834 100644
--- a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/README.md
+++ b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/README.md
@@ -7,7 +7,7 @@ The device RAM is emulated as 1GB RAM for USB throughput testing purpose.
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/project.mk b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/project.mk
index 0706f8044a..4c0125a454 100644
--- a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/project.mk
+++ b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/WUT/.vscode/README.md b/Examples/MAX78002/WUT/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/WUT/.vscode/README.md
+++ b/Examples/MAX78002/WUT/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/WUT/.vscode/settings.json b/Examples/MAX78002/WUT/.vscode/settings.json
index 18c228bd48..8b0bb6dffd 100755
--- a/Examples/MAX78002/WUT/.vscode/settings.json
+++ b/Examples/MAX78002/WUT/.vscode/settings.json
@@ -48,6 +48,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
@@ -61,6 +62,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
diff --git a/Examples/MAX78002/WUT/Makefile b/Examples/MAX78002/WUT/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/WUT/Makefile
+++ b/Examples/MAX78002/WUT/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/WUT/README.md b/Examples/MAX78002/WUT/README.md
index 97636bc28c..b21c302f7f 100644
--- a/Examples/MAX78002/WUT/README.md
+++ b/Examples/MAX78002/WUT/README.md
@@ -6,7 +6,7 @@ This example shows how the wake up timer is used. Press SW4 to sleep or wake up
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/WUT/project.mk b/Examples/MAX78002/WUT/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/WUT/project.mk
+++ b/Examples/MAX78002/WUT/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/Watchdog/.vscode/README.md b/Examples/MAX78002/Watchdog/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/Watchdog/.vscode/README.md
+++ b/Examples/MAX78002/Watchdog/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/Watchdog/.vscode/settings.json b/Examples/MAX78002/Watchdog/.vscode/settings.json
index a82ed11529..c85cbf2ab6 100755
--- a/Examples/MAX78002/Watchdog/.vscode/settings.json
+++ b/Examples/MAX78002/Watchdog/.vscode/settings.json
@@ -48,12 +48,12 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
@@ -64,13 +64,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC"
],
diff --git a/Examples/MAX78002/Watchdog/Makefile b/Examples/MAX78002/Watchdog/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/Watchdog/Makefile
+++ b/Examples/MAX78002/Watchdog/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/Watchdog/README.md b/Examples/MAX78002/Watchdog/README.md
index 69eabe621b..6414c678e4 100644
--- a/Examples/MAX78002/Watchdog/README.md
+++ b/Examples/MAX78002/Watchdog/README.md
@@ -11,7 +11,7 @@ When the application begins, it initializes and starts the watchdog timer. The
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
diff --git a/Examples/MAX78002/Watchdog/project.mk b/Examples/MAX78002/Watchdog/project.mk
index 2aa22a3648..1532153140 100644
--- a/Examples/MAX78002/Watchdog/project.mk
+++ b/Examples/MAX78002/Watchdog/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Examples/MAX78002/WearLeveling/.vscode/README.md b/Examples/MAX78002/WearLeveling/.vscode/README.md
index 58733e941c..90fbcefc65 100755
--- a/Examples/MAX78002/WearLeveling/.vscode/README.md
+++ b/Examples/MAX78002/WearLeveling/.vscode/README.md
@@ -4,7 +4,7 @@ _(If you're viewing this document from within Visual Studio Code you can press `
## Quick Links
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)
* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim)
## Introduction
@@ -23,17 +23,17 @@ The following features are supported:
* [Visual Studio Code](https://code.visualstudio.com/)
* [C/C++ VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [Cortex-Debug Extension](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug)
-* [Analog Devices MSDK](https://analog-devices-msdk.github.io/msdk/)
+* [Analog Devices MSDK](https://analogdevicesinc.github.io/msdk/)
## Installation
Install the MSDK, then set `"MAXIM_PATH"` in your _user_ VS Code settings.
-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.
+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.
## Usage
-See the [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
+See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#visual-studio-code) for detailed usage info.
## Issue Tracker
diff --git a/Examples/MAX78002/WearLeveling/.vscode/settings.json b/Examples/MAX78002/WearLeveling/.vscode/settings.json
index 6614ca96ba..9fec1586f6 100755
--- a/Examples/MAX78002/WearLeveling/.vscode/settings.json
+++ b/Examples/MAX78002/WearLeveling/.vscode/settings.json
@@ -48,13 +48,13 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Include/${config:target}",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ExtMemory",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Touchscreen",
"${config:MAXIM_PATH}/Libraries/CLI/inc",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/littlefs",
@@ -67,6 +67,7 @@
"${config:MAXIM_PATH}/Libraries/PeriphDrivers/Source",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Camera",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/Display",
+ "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/LED",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PMIC",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/PushButton",
@@ -74,7 +75,6 @@
"${config:MAXIM_PATH}/Libraries/MiscDrivers",
"${config:MAXIM_PATH}/Libraries/CLI/src",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/ADC",
- "${config:MAXIM_PATH}/Libraries/MiscDrivers/Display/fonts",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/EEPROM",
"${config:MAXIM_PATH}/Libraries/MiscDrivers/CODEC",
"${config:MAXIM_PATH}/Libraries/littlefs",
diff --git a/Examples/MAX78002/WearLeveling/Makefile b/Examples/MAX78002/WearLeveling/Makefile
index 7feffc7adc..2840a41069 100644
--- a/Examples/MAX78002/WearLeveling/Makefile
+++ b/Examples/MAX78002/WearLeveling/Makefile
@@ -25,7 +25,7 @@
# in "project.mk", on the command-line, or with system environment
# variables.
-# See https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# See https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
# for more detailed instructions on how to use this system.
# The detailed instructions mentioned above are easier to read than
diff --git a/Examples/MAX78002/WearLeveling/README.md b/Examples/MAX78002/WearLeveling/README.md
index 9c1b92ba3a..118387bad5 100644
--- a/Examples/MAX78002/WearLeveling/README.md
+++ b/Examples/MAX78002/WearLeveling/README.md
@@ -15,11 +15,11 @@ Enter "help" in the command line to see more details on the usage of each of the
### Project Usage
-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/)**.
+Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**.
### Project-Specific Build Notes
-* This project comes pre-configured for the MAX78002EVKIT. See [Board Support Packages](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
+* This project comes pre-configured for the MAX78002EVKIT. See [Board Support Packages](https://analogdevicesinc.github.io/msdk/USERGUIDE/#board-support-packages) in the UG for instructions on changing the target board.
## Required Connections
diff --git a/Examples/MAX78002/WearLeveling/project.mk b/Examples/MAX78002/WearLeveling/project.mk
index 16e450a8b6..8b1313bcf1 100644
--- a/Examples/MAX78002/WearLeveling/project.mk
+++ b/Examples/MAX78002/WearLeveling/project.mk
@@ -3,7 +3,7 @@
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
-# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
+# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
diff --git a/Libraries/Boards/MAX32655/EvKit_V1/examples.txt b/Libraries/Boards/MAX32655/EvKit_V1/examples.txt
index fd89517f30..67fc76b509 100644
--- a/Libraries/Boards/MAX32655/EvKit_V1/examples.txt
+++ b/Libraries/Boards/MAX32655/EvKit_V1/examples.txt
@@ -37,17 +37,17 @@ External_Flash
Flash
Flash_CLI
FreeRTOSDemo
-FTHR_I2C
GPIO
Hello_World
+Hello_World_Cpp
Hello_World-riscv
I2C
I2C_EEPROM
I2C_MNGR
I2C_SCAN
I2C_Sensor
+I2C_Sensor_ADT7420
I2S
-I2S_Playback
ICC
Library_Generate
Library_Use
diff --git a/Libraries/Boards/MAX32690/FTHR/Include/board.h b/Libraries/Boards/MAX32690/FTHR/Include/board.h
index d8017d1f00..809c740eca 100644
--- a/Libraries/Boards/MAX32690/FTHR/Include/board.h
+++ b/Libraries/Boards/MAX32690/FTHR/Include/board.h
@@ -69,8 +69,6 @@ extern "C" {
#define EXT_FLASH_BAUD 4000000
#endif
-#define BOARD_FTHR 1 /// Used in examples to control program flow.
-
/**
* A reference to LED1 (RED LED in the RGB LED) of the board.
* Can be used with the LED_On, LED_Off, and LED_Toggle functions.
diff --git a/Libraries/Boards/MAX78000/CAM02_RevA/Include/board.h b/Libraries/Boards/MAX78000/CAM02_RevA/Include/board.h
index 64a7fd5000..4e31f0c2d6 100644
--- a/Libraries/Boards/MAX78000/CAM02_RevA/Include/board.h
+++ b/Libraries/Boards/MAX78000/CAM02_RevA/Include/board.h
@@ -23,6 +23,7 @@
*/
#include
+#include "led.h"
#ifndef LIBRARIES_BOARDS_MAX78000_CAM02_REVA_INCLUDE_BOARD_H_
#define LIBRARIES_BOARDS_MAX78000_CAM02_REVA_INCLUDE_BOARD_H_
diff --git a/Libraries/CLI/src/cli.c b/Libraries/CLI/src/cli.c
index bd28a463d5..65295c424d 100644
--- a/Libraries/CLI/src/cli.c
+++ b/Libraries/CLI/src/cli.c
@@ -156,6 +156,10 @@ void line_accumulator(uint8_t user_char)
}
break;
+ case NEW_LINE:
+ // Do nothing. We don't want to store or echo new lines
+ break;
+
case ENTER:
// Handle Enter or carriage return
MXC_UART_WriteCharacter(cli_uart, NEW_LINE);
diff --git a/Libraries/CMSIS/Device/Maxim/GCC/gcc.mk b/Libraries/CMSIS/Device/Maxim/GCC/gcc.mk
index 5c370c5b4c..884021b4b8 100644
--- a/Libraries/CMSIS/Device/Maxim/GCC/gcc.mk
+++ b/Libraries/CMSIS/Device/Maxim/GCC/gcc.mk
@@ -287,6 +287,9 @@ endif
CFLAGS+=$(PROJ_CFLAGS)
CXXFLAGS+=$(CFLAGS)
+C_WARNINGS_AS_ERRORS ?= implicit-function-declaration
+CFLAGS += -Werror=$(C_WARNINGS_AS_ERRORS)
+
# The command for calling the library archiver.
AR=${PREFIX}-ar
@@ -623,10 +626,10 @@ ifeq "$(SUPPRESS_HELP)" "0"
ifneq "$(HELP_COMPLETE)" "1"
$(info ****************************************************************************)
$(info * Analog Devices MSDK)
-$(info * - User Guide: https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+$(info * - User Guide: https://analogdevicesinc.github.io/msdk/USERGUIDE/)
$(info * - Get Support: https://www.analog.com/support/technical-support.html)
$(info * - Report Issues: https://github.com/Analog-Devices-MSDK/msdk/issues)
-$(info * - Contributing: https://analog-devices-msdk.github.io/msdk/CONTRIBUTING/)
+$(info * - Contributing: https://analogdevicesinc.github.io/msdk/CONTRIBUTING/)
$(info ****************************************************************************)
# export HELP_COMPLETE so that it's only printed once.
HELP_COMPLETE = 1
diff --git a/Libraries/CMSIS/Device/Maxim/GCC/gcc_riscv.mk b/Libraries/CMSIS/Device/Maxim/GCC/gcc_riscv.mk
index 7dd1869762..d379acff03 100644
--- a/Libraries/CMSIS/Device/Maxim/GCC/gcc_riscv.mk
+++ b/Libraries/CMSIS/Device/Maxim/GCC/gcc_riscv.mk
@@ -290,6 +290,9 @@ CXXFLAGS += \
-fno-exceptions \
-std=c++11 \
+C_WARNINGS_AS_ERRORS ?= implicit-function-declaration
+CFLAGS += -Werror=$(C_WARNINGS_AS_ERRORS)
+
# NOTE(JC): I'm leaving this commented because it's weird. We used
# to pass the linker **all** of the available extensions and no -mabi
# option... I don't think that was correct. I have updated LDFLAGS
@@ -621,10 +624,10 @@ ifeq "$(SUPPRESS_HELP)" "0"
ifneq "$(HELP_COMPLETE)" "1"
$(info ****************************************************************************)
$(info * Analog Devices MSDK)
-$(info * - User Guide: https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+$(info * - User Guide: https://analogdevicesinc.github.io/msdk/USERGUIDE/)
$(info * - Get Support: https://www.analog.com/support/technical-support.html)
$(info * - Report Issues: https://github.com/Analog-Devices-MSDK/msdk/issues)
-$(info * - Contributing: https://analog-devices-msdk.github.io/msdk/CONTRIBUTING/)
+$(info * - Contributing: https://analogdevicesinc.github.io/msdk/CONTRIBUTING/)
$(info ****************************************************************************)
# export HELP_COMPLETE so that it's only printed once.
HELP_COMPLETE = 1
diff --git a/Libraries/Cordio/platform/targets/maxim/max32655/sources/pal_flash.c b/Libraries/Cordio/platform/targets/maxim/max32655/sources/pal_flash.c
index b481c8b3e0..784502229c 100644
--- a/Libraries/Cordio/platform/targets/maxim/max32655/sources/pal_flash.c
+++ b/Libraries/Cordio/platform/targets/maxim/max32655/sources/pal_flash.c
@@ -35,6 +35,7 @@
#include
#include "pal_flash.h"
+#include "pal_sys.h"
#include "wsf_assert.h"
#include "wsf_cs.h"
#include "mxc_device.h"
diff --git a/Libraries/Cordio/platform/targets/maxim/max32665/sources/pal_flash.c b/Libraries/Cordio/platform/targets/maxim/max32665/sources/pal_flash.c
index e5091bb597..a442d0d612 100644
--- a/Libraries/Cordio/platform/targets/maxim/max32665/sources/pal_flash.c
+++ b/Libraries/Cordio/platform/targets/maxim/max32665/sources/pal_flash.c
@@ -36,6 +36,7 @@
#include
#include "pal_flash.h"
#include "pal_sys.h"
+#include "wsf_cs.h"
#include "mxc_device.h"
#include "flc.h"
diff --git a/Libraries/MiscDrivers/Display/tft_ili9341.c b/Libraries/MiscDrivers/Display/tft_ili9341.c
index 2ca918073b..f4b7761f5b 100644
--- a/Libraries/MiscDrivers/Display/tft_ili9341.c
+++ b/Libraries/MiscDrivers/Display/tft_ili9341.c
@@ -153,7 +153,7 @@ static void write_command(unsigned char command)
static void write_data(unsigned char data)
{
- unsigned char val = data;
+ uint16_t val = data;
MXC_GPIO_OutSet(MXC_GPIO0, MXC_GPIO_PIN_8);
spi_transmit(&val, 1);
diff --git a/Libraries/PeriphDrivers/Include/MAX32650/spimss.h b/Libraries/PeriphDrivers/Include/MAX32650/spimss.h
index fb81a3792f..143e8f10b5 100644
--- a/Libraries/PeriphDrivers/Include/MAX32650/spimss.h
+++ b/Libraries/PeriphDrivers/Include/MAX32650/spimss.h
@@ -84,7 +84,7 @@ typedef void (*mxc_spimss_callback_fn)(mxc_spimss_req_t *req, int error_code);
struct mxc_spimss_req {
uint8_t ssel; /**< Not Used*/
uint8_t deass; /**< Not Used*/
- const void *tx_data; /**< Pointer to a buffer to transmit data from. NULL if undesired. */
+ void *tx_data; /**< Pointer to a buffer to transmit data from. NULL if undesired. */
void *rx_data; /**< Pointer to a buffer to store data received. NULL if undesired.*/
mxc_spimss_width_t width; /**< Not Used */
unsigned len; /**< Number of transfer units to send from the \p tx_data buffer. */
diff --git a/Libraries/PeriphDrivers/Include/MAX32660/spimss.h b/Libraries/PeriphDrivers/Include/MAX32660/spimss.h
index 3cee7fc70f..b4b20db870 100644
--- a/Libraries/PeriphDrivers/Include/MAX32660/spimss.h
+++ b/Libraries/PeriphDrivers/Include/MAX32660/spimss.h
@@ -84,7 +84,7 @@ typedef void (*mxc_spimss_callback_fn)(mxc_spimss_req_t *req, int error_code);
struct mxc_spimss_req {
uint8_t ssel; /**< Not Used*/
uint8_t deass; /**< Not Used*/
- const void *tx_data; /**< Pointer to a buffer to transmit data from. NULL if undesired. */
+ void *tx_data; /**< Pointer to a buffer to transmit data from. NULL if undesired. */
void *rx_data; /**< Pointer to a buffer to store data received. NULL if undesired.*/
mxc_spimss_width_t width; /**< Not Used */
unsigned len; /**< Number of transfer units to send from the \p tx_data buffer. */
diff --git a/Libraries/PeriphDrivers/Include/MAX32672/gpio.h b/Libraries/PeriphDrivers/Include/MAX32672/gpio.h
index af32b19c58..ae90adacd5 100644
--- a/Libraries/PeriphDrivers/Include/MAX32672/gpio.h
+++ b/Libraries/PeriphDrivers/Include/MAX32672/gpio.h
@@ -286,6 +286,17 @@ void MXC_GPIO_DisableInt(mxc_gpio_regs_t *port, uint32_t mask);
*/
uint32_t MXC_GPIO_GetFlags(mxc_gpio_regs_t *port);
+/**
+ * @brief Set Voltage select for pins to VDDIO or VDDIOH
+ *
+ * @param port The GPIO port
+ * @param[in] vssel VDDIO or VDDIOH to set the voltatge to
+ * @param[in] mask Pins in the GPIO port that will be set to the voltage.
+ *
+ * @return #E_NO_ERROR if everything is successful. See \ref MXC_Error_Codes for the list of error codes.
+ */
+int MXC_GPIO_SetVSSEL(mxc_gpio_regs_t *port, mxc_gpio_vssel_t vssel, uint32_t mask);
+
/**
* @brief Gets the interrupt(s) status on a GPIO port
*
diff --git a/Libraries/PeriphDrivers/Source/RTC/rtc_reva.c b/Libraries/PeriphDrivers/Source/RTC/rtc_reva.c
index af1047d421..a90db817ea 100644
--- a/Libraries/PeriphDrivers/Source/RTC/rtc_reva.c
+++ b/Libraries/PeriphDrivers/Source/RTC/rtc_reva.c
@@ -2,7 +2,7 @@
*
* Copyright (C) 2022-2023 Maxim Integrated Products, Inc. All Rights Reserved.
* (now owned by Analog Devices, Inc.),
- * Copyright (C) 2023 Analog Devices, Inc. All Rights Reserved. This software
+ * Copyright (C) 2023-2024 Analog Devices, Inc. All Rights Reserved. This software
* is proprietary to Analog Devices, Inc. and its licensors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -63,7 +63,7 @@ int MXC_RTC_RevA_EnableInt(mxc_rtc_reva_regs_t *rtc, uint32_t mask)
rtc->ctrl |= mask;
/* If TOD and SSEC interrupt enable, check busy after CTRL register write*/
- mask &= MXC_F_RTC_REVA_CTRL_RDY_IE;
+ mask &= ~MXC_F_RTC_REVA_CTRL_RDY_IE;
if (mask) {
MXC_RTC_RevA_waitBusyToClear();
diff --git a/Libraries/PeriphDrivers/Source/SPIMSS/spimss_reva.h b/Libraries/PeriphDrivers/Source/SPIMSS/spimss_reva.h
index 37ff329de2..b3f846e5d0 100644
--- a/Libraries/PeriphDrivers/Source/SPIMSS/spimss_reva.h
+++ b/Libraries/PeriphDrivers/Source/SPIMSS/spimss_reva.h
@@ -73,7 +73,7 @@ typedef void (*spimss_reva_callback_fn)(spimss_reva_req_t *req, int error_code);
struct spimss_reva_req {
uint8_t ssel; /**< Not Used*/
uint8_t deass; /**< Not Used*/
- const void *tx_data; /**< Pointer to a buffer to transmit data from. NULL if undesired. */
+ void *tx_data; /**< Pointer to a buffer to transmit data from. NULL if undesired. */
void *rx_data; /**< Pointer to a buffer to store data received. NULL if undesired.*/
spimss_reva_width_t width; /**< Not Used */
unsigned len; /**< Number of transfer units to send from the \p tx_data buffer. */
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_ai85.c b/Libraries/PeriphDrivers/Source/SYS/sys_ai85.c
index 60434cb583..ba399249e0 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_ai85.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_ai85.c
@@ -566,7 +566,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_ai87.c b/Libraries/PeriphDrivers/Source/SYS/sys_ai87.c
index 7a420a8ca7..d3ee257354 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_ai87.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_ai87.c
@@ -566,7 +566,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_es17.c b/Libraries/PeriphDrivers/Source/SYS/sys_es17.c
index 1a31cac2ab..2d38cad74f 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_es17.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_es17.c
@@ -325,7 +325,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_me10.c b/Libraries/PeriphDrivers/Source/SYS/sys_me10.c
index b912d3633d..093be9780e 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_me10.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_me10.c
@@ -600,7 +600,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_me11.c b/Libraries/PeriphDrivers/Source/SYS/sys_me11.c
index 7e504cda61..5ba4e28542 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_me11.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_me11.c
@@ -345,7 +345,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_me12.c b/Libraries/PeriphDrivers/Source/SYS/sys_me12.c
index e4131590c8..55435d12d6 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_me12.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_me12.c
@@ -470,7 +470,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_me13.c b/Libraries/PeriphDrivers/Source/SYS/sys_me13.c
index eeb8be2e80..10793ae99a 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_me13.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_me13.c
@@ -423,7 +423,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_me14.c b/Libraries/PeriphDrivers/Source/SYS/sys_me14.c
index 99a450759d..774080593f 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_me14.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_me14.c
@@ -409,7 +409,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_me15.c b/Libraries/PeriphDrivers/Source/SYS/sys_me15.c
index c49abac8c6..52a9e0c3fb 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_me15.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_me15.c
@@ -493,7 +493,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_me16.c b/Libraries/PeriphDrivers/Source/SYS/sys_me16.c
index 9e1dde1064..f684e39e81 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_me16.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_me16.c
@@ -404,7 +404,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_me17.c b/Libraries/PeriphDrivers/Source/SYS/sys_me17.c
index f6ba2c1985..de4dc6100a 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_me17.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_me17.c
@@ -573,7 +573,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_me18.c b/Libraries/PeriphDrivers/Source/SYS/sys_me18.c
index 6f0daeab60..bbf52c3a5e 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_me18.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_me18.c
@@ -504,7 +504,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/PeriphDrivers/Source/SYS/sys_me21.c b/Libraries/PeriphDrivers/Source/SYS/sys_me21.c
index 75b28919b5..1c8084a2c9 100644
--- a/Libraries/PeriphDrivers/Source/SYS/sys_me21.c
+++ b/Libraries/PeriphDrivers/Source/SYS/sys_me21.c
@@ -481,7 +481,7 @@ int MXC_SYS_LockDAP_Permanent(void)
// Locking the DAP is not supported while in DEBUG.
// To use this function, build for release ("make release")
// or set DEBUG = 0
- // (see https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-tables)
+ // (see https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-tables)
return E_NOT_SUPPORTED;
#else
int err;
diff --git a/Libraries/SDHC/ff15/Makefile b/Libraries/SDHC/ff15/Makefile
index c89a70ea3f..cae46d2b26 100644
--- a/Libraries/SDHC/ff15/Makefile
+++ b/Libraries/SDHC/ff15/Makefile
@@ -74,6 +74,7 @@ IPATH += $(CMSIS_ROOT)/Device/Maxim/$(TARGET)/Include
IPATH += $(CMSIS_ROOT)/Include
IPATH += $(PERIPH_DRIVER_DIR)/Include/$(TARGET_UC)
IPATH += $(BOARD_DIR)/Include
+IPATH += $(FF_CONF_DIR)
# Since the diskio.c implementation file has some dependencies
# on board files, we must set up the board build system as well
diff --git a/Libraries/SDHC/ff15/fat32.mk b/Libraries/SDHC/ff15/fat32.mk
index d3c02159b4..9f4c29ba5d 100644
--- a/Libraries/SDHC/ff15/fat32.mk
+++ b/Libraries/SDHC/ff15/fat32.mk
@@ -25,7 +25,7 @@
################################################################################
ifeq "$(FAT32_DRIVER_DIR)" ""
-$(error FAT32_DRIVER_DIR must be specified")
+FAT32_DRIVER_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
endif
# Specify the build directory if not defined by the project
@@ -58,9 +58,17 @@ LIBS += ${FAT32_DRIVER_BUILD_DIR}/FAT32.a
# Add to include directory list
IPATH += ${FAT32_DRIVER_DIR}/source
+# Allow overriding the default ffconf.h per-project
+FF_CONF_DIR ?= $(FAT32_DRIVER_DIR)/source/conf
+ifeq "$(wildcard $(FF_CONF_DIR)/ffconf.h)" ""
+$(error Failed to find 'ffconf.h' inside $(FF_CONF_DIR))
+endif
+FF_CONF_DIR := $(abspath $(FF_CONF_DIR))
+IPATH += $(FF_CONF_DIR)
+
# Add rule to build the Driver Library
${FAT32_DRIVER_BUILD_DIR}/FAT32.a: $(PROJECTMK)
- $(MAKE) -C ${FAT32_DRIVER_DIR} lib BUILD_DIR=${FAT32_DRIVER_BUILD_DIR} BOARD=${BOARD}
+ $(MAKE) -C ${FAT32_DRIVER_DIR} lib BUILD_DIR=${FAT32_DRIVER_BUILD_DIR} BOARD=${BOARD} FF_CONF_DIR=$(FF_CONF_DIR)
distclean:
$(MAKE) -C ${SDHC_DRIVER_DIR} clean
diff --git a/Libraries/SDHC/ff15/source/ffconf.h b/Libraries/SDHC/ff15/source/conf/ffconf.h
similarity index 100%
rename from Libraries/SDHC/ff15/source/ffconf.h
rename to Libraries/SDHC/ff15/source/conf/ffconf.h
diff --git a/Libraries/SDHC/libinfo.json b/Libraries/SDHC/libinfo.json
index 0c2272da87..47ba414803 100644
--- a/Libraries/SDHC/libinfo.json
+++ b/Libraries/SDHC/libinfo.json
@@ -2,10 +2,10 @@
"name":"SDHC",
"ipaths":[
"Include",
- "ff13/Source"
+ "ff15/Source"
],
"vpaths":[
- "ff13/Source"
+ "ff15/Source"
],
"whitelist":"True",
"targets":[
diff --git a/Libraries/libs.mk b/Libraries/libs.mk
index d9bd7cb781..27e57b15e7 100644
--- a/Libraries/libs.mk
+++ b/Libraries/libs.mk
@@ -160,7 +160,7 @@ SDHC_DRIVER_DIR ?= $(LIBS_DIR)/SDHC
# - ff13
# - ff14
# - ff15
-FATFS_VERSION ?= ff13
+FATFS_VERSION ?= ff15
ifneq "$(FATFS_VERSION)" "ff13"
ifneq "$(FATFS_VERSION)" "ff14"
ifneq "$(FATFS_VERSION)" "ff15"
diff --git a/README.md b/README.md
index da13687253..a6cda81c76 100644
--- a/README.md
+++ b/README.md
@@ -4,13 +4,13 @@
The Maxim Microcontrollers SDK (MSDK), now a part of [Analog Devices](https://www.analog.com/en/index.html), contains the necessary software and tools to develop firmware for the [MAX32xxx and MAX78xxx Microcontrollers](https://www.analog.com/en/parametricsearch/10984). This includes register files, peripheral drivers, system startup files, documentation, various utilities, third-party libraries, IDE support files, and a toolchain. Full documentation can be found in the User Guide:
-* [MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)
+* [MSDK User Guide](https://analogdevicesinc.github.io/msdk//USERGUIDE/)
**This repository** contains the latest **_source code_** of the MSDK and is being used for _development_. It does _not_ contain the MSDK _toolchain_, which is a separate collection of programs used for building, programming, and debugging.
## Installation
-The MSDK source code is bundled alongside its toolchain into releases that are available via an Automatic Installer. See the ["Installation"](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#installation) section in the MSDK User Guide for instructions.
+The MSDK source code is bundled alongside its toolchain into releases that are available via an Automatic Installer. See the ["Installation"](https://analogdevicesinc.github.io/msdk//USERGUIDE/#installation) section in the MSDK User Guide for instructions.
Users who would like to use the latest bleeding-edge _development_ resources can follow [Developing from the Repo](#developing-from-the-repo) below, but this should only be done **_after_** installing the release MSDK above.
@@ -52,7 +52,7 @@ This repo can be cloned using [Git](https://git-scm.com/) to obtain the latest d
This repository contains the MSDK's *source code* only. In order to develop on it directly the toolchain must be made available at the same file-paths as the full MSDK installation. The easiest way to do this is to retrieve the toolchain with the automatic installer and then create symbolic links. This section walks through the process.
-1. Install the MSDK via the [Automatic Installer](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#installation).
+1. Install the MSDK via the [Automatic Installer](https://analogdevicesinc.github.io/msdk//USERGUIDE/#installation).
At ***minimum***, install the following components:
* GNU RISC-V Embedded GCC
@@ -150,7 +150,7 @@ This repository contains the MSDK's *source code* only. In order to develop on
### Environment Setup (Visual Studio Code)
-If you have not previously configured VS Code, see [Setup (VS Code)](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#getting-started-with-visual-studio-code) in the User Guide.
+If you have not previously configured VS Code, see [Setup (VS Code)](https://analogdevicesinc.github.io/msdk//USERGUIDE/#getting-started-with-visual-studio-code) in the User Guide.
To configure Visual Studio Code for the _development repository_ simply set `MAXIM_PATH` to the cloned location of the _development repo_ instead of the release MSDK in your user settings.json file. After making the change, reload VS Code.
@@ -225,13 +225,13 @@ This option can be used to configure _all_ Eclipse projects to use the developme
### Environment Setup (Command-Line)
-If you have not previously configured the command-line, see [Setup (Command-Line)](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#getting-started-with-command-line-development) in the User Guide.
+If you have not previously configured the command-line, see [Setup (Command-Line)](https://analogdevicesinc.github.io/msdk//USERGUIDE/#getting-started-with-command-line-development) in the User Guide.
To configure the command-line for use with the development repo:
1. Set the `MAXIM_PATH` environment variable to the cloned location of the development repo instead of the release MSDK.
- Windows: Edit `setenv.bat` in the root directory of the MSDK.
- - Linux/MacOS: Edit your shell's profile/startup script. Alternatively, edit `setenv.sh` in the root directory of the MSDK and `source` it from the shell's profile/startup script (see [here](https://analog-devices-msdk.github.io/msdk/USERGUIDE/#setup-command-line))
+ - Linux/MacOS: Edit your shell's profile/startup script. Alternatively, edit `setenv.sh` in the root directory of the MSDK and `source` it from the shell's profile/startup script (see [here](https://analogdevicesinc.github.io/msdk//USERGUIDE/#setup-command-line))
2. Restart your shell
diff --git a/USERGUIDE.md b/USERGUIDE.md
index 88c7b6a3fd..e6d08af701 100644
--- a/USERGUIDE.md
+++ b/USERGUIDE.md
@@ -1455,7 +1455,7 @@ For setup/quick-start, see ["Getting Started with Command-Line Development"](#ge
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
- # https://analog-devices-msdk.github.io/msdk/USERGUIDE/
+ # https://analogdevicesinc.github.io/msdk/USERGUIDE/
# **********************************************************
@@ -1783,7 +1783,7 @@ For example, to enable hardware floating-point acceleration for a project, the *
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
- # https://analog-devices-msdk.github.io/msdk/USERGUIDE/
+ # https://analogdevicesinc.github.io/msdk/USERGUIDE/
# **********************************************************