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 @@ - +